diff options
author | Jesper Louis Andersen | 2022-10-25 16:13:39 +0000 |
---|---|---|
committer | Jesper Louis Andersen | 2022-10-25 16:13:39 +0000 |
commit | 5b229b11cb63e77925c3d6af3ad8028e1ae7efc2 (patch) | |
tree | cf7c90c87c2c4dcd7a8d689dc55e5e0db55d57eb /entries/jlouis/README.md | |
parent | 9375f87d202403e93ea4196e60de24fd9a9ea065 (diff) |
Provide a fib implementation for jlouis
Most of the entry is pure build-scaffolding. The meat is in a single
file, which is then referenced in people.json.
Diffstat (limited to 'entries/jlouis/README.md')
-rw-r--r-- | entries/jlouis/README.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/entries/jlouis/README.md b/entries/jlouis/README.md new file mode 100644 index 0000000..540f3cb --- /dev/null +++ b/entries/jlouis/README.md @@ -0,0 +1,11 @@ +# Fib like only I would write it + +## Instructions + +Everything is in `bin/fib.ml` and the rest is just scaffolding. + +Use nix to get an OCaml development environment. + +Use dune to build: `dune build` +Use dune to run: `dune exec fib` +Use dune to test: `dune test` |