## Installation
To work on the exercises, you will need `Opam` and `Core`. Consult [opam](https://opam.ocaml.org) website for instructions on how to install `opam` for your OS. Once `opam` is installed open a terminal window and run the following command to install core:
```bash
opam install core
```
To run the tests you will need `OUnit`. Install it using `opam`:
```bash
opam install ounit
```
There are three exercises that deviate from explicitly using base and oUnit:
[x] hangman uses base, ounit and react
[x] allergies uses base and qcheck
[x] meetup uses base, core_kernel and ounit (but only really needs core_kernel and ounit)
The implementer can either skip these three or customize them.
Currently all exercise texts have a piece of instruction on how to install Core.
But since #277, (almost) all exercises use Base. Replace this with instructions for Base instead.
For example,
acronym
's README.md says:There are three exercises that deviate from explicitly using
base
andoUnit
:hangman
uses base, ounit and reactallergies
uses base and qcheckmeetup
uses base, core_kernel and ounit (but only really needs core_kernel and ounit)The implementer can either skip these three or customize them.