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
- Host: GitHub
- URL: https://github.com/bahmanm/euler-ml
- Owner: bahmanm
- License: apache-2.0
- Created: 2018-01-23T20:09:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-10T16:55:10.000Z (almost 8 years ago)
- Last Synced: 2025-12-07T11:05:17.442Z (6 months ago)
- Topics: euler-project, excercise, ocaml
- Language: OCaml
- Size: 67.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```