| Server IP : 127.0.1.1 / Your IP : 216.73.216.152 Web Server : Apache/2.4.52 (Ubuntu) System : Linux bahcrestlinepropertiesllc 5.15.0-113-generic #123-Ubuntu SMP Mon Jun 10 08:16:17 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/bahcrestline/core/vendor/scrivo/highlight.php/test/markup/reasonml/ |
Upload File : |
let i = 14; let i = (-14); let i = 1000; let i = 0b100; let i = 0x1FF; let i = 0o777; let i64 = 128L; let i64 = 0b10L; let i32 = 32l; let i32 = 0x12l; let nat = 10n; let nat = 0o644n; let f = 5.; let f = 5.1; let f = 1e+1; let f = 1e1; let f = 1e-1; let f = 1024e12; let f = 1L; let f = 23.0 +. 1.0; let f = 2 / 23 * 1; let f = 2.0 /. 23.0 *. 1.0; let exp = 2.0 ** 2.0; let structual = true == false; let reference = true === false; let b = true || false; let l = []; let a = [||]; let arr = [|1, 2, 3|]; let b = [item1, item2, ...theRest]; let () = ignore(b); let str = "a" ++ "b"; let c = 'a'; let c = '\xFF'; let c = '\128'; let c = '\n';