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: 2 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2025-01-08T06:17:19.000Z (6 months ago)
- Last Synced: 2025-04-23T18:18:35.713Z (3 months ago)
- Topics: cmdliner, core, dune, math, ocaml, project-euler, projecteuler
- Language: OCaml
- Homepage:
- Size: 2.29 MB
- Stars: 12
- Watchers: 3
- 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.