exercism / ocaml

Exercism exercises in OCaml.
https://exercism.org/tracks/ocaml
MIT License
94 stars 50 forks source link

Change READMEs to use Base #288

Closed sshine closed 6 years ago

sshine commented 6 years ago

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:

## 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:

The implementer can either skip these three or customize them.