mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-09-19 01:43:18 +08:00
Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com>
364 B
364 B
ocaml
The OCaml repl (read-evaluate-print-loop). Interprets Ocaml commands. More information: https://manned.org/ocaml.
- Read OCaml commands from the user and execute them:
ocaml
- Read OCaml commands from a file and execute them:
ocaml {{path/to/file.ml}}
- Run OCaml script with modules:
ocaml {{module1}} {{module2}} {{path/to/file.ml}}