snippetbashTip
ocamlc — The OCaml bytecode compiler. Produces executables runnable by the OCaml interpreter. More informatio
Viewed 0 times
theocamlcommandproducesocamlcbytecodeclicompiler
Problem
How to use the
ocamlc command: The OCaml bytecode compiler. Produces executables runnable by the OCaml interpreter. More information: <https://manned.org/ocamlc>.Solution
ocamlc — The OCaml bytecode compiler. Produces executables runnable by the OCaml interpreter. More information: <https://manned.org/ocamlc>.Create a binary from a source file:
ocamlc {{path/to/source_file.ml}}Create a named binary from a source file:
ocamlc -o {{path/to/binary}} {{path/to/source_file.ml}}Automatically generate a module signature (interface) file:
ocamlc -i {{path/to/source_file.ml}}Code Snippets
Create a binary from a source file
ocamlc {{path/to/source_file.ml}}Create a named binary from a source file
ocamlc -o {{path/to/binary}} {{path/to/source_file.ml}}Automatically generate a module signature (interface) file
ocamlc -i {{path/to/source_file.ml}}Context
tldr-pages: common/ocamlc
Revisions (0)
No revisions yet.