Forrest logo
back to context overview

ocamlc

List of commands for ocamlc:

  • ocamlc:tldr:18d3d ocamlc: Create a binary from a source file.
    $ ocamlc ${path-to-source_file-ml}
    try on your machine
    explain this command
  • ocamlc:tldr:b4915 ocamlc: Automatically generate a module signature (interface) file.
    $ ocamlc -i ${path-to-source_file-ml}
    try on your machine
    explain this command
  • ocamlc:tldr:d2228 ocamlc: Create a named binary from a source file.
    $ ocamlc -o ${path-to-binary} ${path-to-source_file-ml}
    try on your machine
    explain this command
back to context overview