Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bcc32/projecteuler-ocaml
My solutions to ProjectEuler problems in OCaml. Don't spoil yourself, please!
https://github.com/bcc32/projecteuler-ocaml
cmdliner core dune math ocaml project-euler projecteuler
Last synced: 3 months ago
JSON representation
My solutions to ProjectEuler problems in OCaml. Don't spoil yourself, please!
- Host: GitHub
- URL: https://github.com/bcc32/projecteuler-ocaml
- Owner: bcc32
- License: mit
- Created: 2016-07-11T03:09:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-01-09T01:04:09.000Z (about 1 year ago)
- Last Synced: 2024-01-09T03:04:02.676Z (about 1 year ago)
- Topics: cmdliner, core, dune, math, ocaml, project-euler, projecteuler
- Language: OCaml
- Homepage:
- Size: 2.27 MB
- Stars: 10
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE.md
Awesome Lists containing this project
README
# projecteuler-ocaml
My solutions to ProjectEuler problems in OCaml. Don't spoil yourself, please!# How to run
```
dune build -p euler
dune exec -p euler -- euler PROBLEM_NUMBER [-time]
```If passed the `-time` flag, the program will report the time taken to execute
the solution code.The `EULER_DEBUG` environment variable, when set to a non-empty string, will
enable debug/progress printing in some solutions.