diff options
author | Daniil Baturin <daniil@baturin.org> | 2014-09-11 20:59:21 +0700 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2014-09-11 20:59:21 +0700 |
commit | 6eea532330ac11ce261dd9b3e765099b1288fb17 (patch) | |
tree | 9427667b525194d155e01e6f68ebf51a676be45c /ocaml.html.markdown | |
parent | 6c0018c4b7457e0bf9873627af366b349b194637 (diff) |
The native compiler is ocamlopt, not ocamlc.opt.
Artifacts of late-night writing.
Diffstat (limited to 'ocaml.html.markdown')
-rw-r--r-- | ocaml.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ocaml.html.markdown b/ocaml.html.markdown index c104823a..747a52f5 100644 --- a/ocaml.html.markdown +++ b/ocaml.html.markdown @@ -10,7 +10,7 @@ features. Along with StandardML and its dialects it belongs to ML language family. Just like StandardML, there are both a compiler and an interpreter for OCaml. The interpreter binary is normally called "ocaml" and -the compiler is "ocamlc.opt". There is also a bytecode compiler, "ocamlc", +the compiler is "ocamlopt". There is also a bytecode compiler, "ocamlc", but there are few reasons to use it. It is strongly and statically typed, but instead of using manually written |