Sha256: 584758cea16bdf5317fc552f542a2b570d0c35f5644c61a1b67bd882ba90b769
Contents?: true
Size: 547 Bytes
Versions: 328
Compression:
Stored size: 547 Bytes
Contents
Because OCaml is a compiled language you need to compile your submission and the test code before you can run the tests. Compile with ```bash $ corebuild -quiet test.native ``` and when successful run the tests by running the `test.native` executable: ```bash ./test.native ``` Alternatively just type ```bash make ``` ## Creating Your First OCaml Module To create a module that can be used with the test in the `bob` exercise put the following in a file named `bob.ml`: ```ocaml open Core.Std let response_for input = failwith "TODO" ```
Version data entries
328 entries across 328 versions & 1 rubygems