Sha256: 66e9d577677b978dc330b164b33d8f452053b224d84e0e06c9dc535dac2ea748
Contents?: true
Size: 604 Bytes
Versions: 68
Compression:
Stored size: 604 Bytes
Contents
Because OCaml is a compiled language you need to compile your submission and the test code before you can run the tests. We use [`jbuilder`](https://jbuilder.readthedocs.io/en/latest/) to build. Each folder has a jbuild file specifying how to build and also a Makefile which delegates to jbuild. To compile and run the tests, simply type from the exercise folder: ```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 Base let response_for input = failwith "TODO" ```
Version data entries
68 entries across 68 versions & 1 rubygems