CSE 130: How to run OCaml in the Lab machines
Here is a sample session. You need to type "prep cs130f" before you can run ocaml.
$ prep cs130f
[cs130f] $ ocaml
OCaml version 4.02.0
#
At the OCaml prompt:
- Enter #use "foo.ml"; to "load" the file foo.ml
. This has the same effect as typing out the file at the prompt,
but its usually more convenient to type and edit the file with Vim/Emacs
and load it in like this.
A more convenient option is the
OCaml-mode for Emacs.
- Press "Ctrl-D" to exit OCaml.
You can directly send the file foo.ml
into OCaml and get the output piped to stdout by typing:
$ ocaml foo.ml