An open API service indexing awesome lists of open source software.

https://github.com/bahmanm/euler-ml

Project Euler in OCaml
https://github.com/bahmanm/euler-ml

euler-project excercise ocaml

Last synced: 6 days ago
JSON representation

Project Euler in OCaml

Awesome Lists containing this project

README

          

# Project Euler in OCaml #
Solutions to [Project Euler](https://projecteuler.net/) problems in [OCaml](http://ocaml.org/):

* [Dune](https://github.com/ocaml/dune) for building the project
* [Batteries](http://batteries.forge.ocamlcore.org/) as the stdlib
* [OUnit](http://ounit.forge.ocamlcore.org/) for testing

*NOTE: This is a work in progress --obviously.*

# How To Run Tests #
Provided that you have already [installed OPAM](https://opam.ocaml.org/doc/Install.html), you need to
install a couple of dependencies:

```
$ opam install dune ounit batteries
$ cd euler-ml
$ dune exec ./test/test_euler.exe
```