diff --git a/pages/common/ocamlc.md b/pages/common/ocamlc.md new file mode 100644 index 0000000000..07774f6869 --- /dev/null +++ b/pages/common/ocamlc.md @@ -0,0 +1,12 @@ +# ocamlc + +> The OCaml bytecode compiler. +> Produces executables runnable by the OCaml interpreter. + +- 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}}`