aboutsummaryrefslogtreecommitdiff
path: root/entries/jlouis/bin
diff options
context:
space:
mode:
authorJesper Louis Andersen2022-10-25 16:13:39 +0000
committerJesper Louis Andersen2022-10-25 16:13:39 +0000
commit5b229b11cb63e77925c3d6af3ad8028e1ae7efc2 (patch)
treecf7c90c87c2c4dcd7a8d689dc55e5e0db55d57eb /entries/jlouis/bin
parent9375f87d202403e93ea4196e60de24fd9a9ea065 (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/bin')
-rw-r--r--entries/jlouis/bin/dune4
-rw-r--r--entries/jlouis/bin/main.ml1
2 files changed, 5 insertions, 0 deletions
diff --git a/entries/jlouis/bin/dune b/entries/jlouis/bin/dune
new file mode 100644
index 0000000..6d6e5f9
--- /dev/null
+++ b/entries/jlouis/bin/dune
@@ -0,0 +1,4 @@
+(executable
+ (public_name fib)
+ (name main)
+ (libraries fib))
diff --git a/entries/jlouis/bin/main.ml b/entries/jlouis/bin/main.ml
new file mode 100644
index 0000000..ca2c25e
--- /dev/null
+++ b/entries/jlouis/bin/main.ml
@@ -0,0 +1 @@
+let _ = print_endline ("Mok'ra: " ^ string_of_int (Fib.Orc.iter 10)) \ No newline at end of file