diff options
Diffstat (limited to 'bindgen/ocaml/bin')
-rw-r--r-- | bindgen/ocaml/bin/dune | 4 | ||||
-rw-r--r-- | bindgen/ocaml/bin/main.ml | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/bindgen/ocaml/bin/dune b/bindgen/ocaml/bin/dune new file mode 100644 index 0000000..fd2576a --- /dev/null +++ b/bindgen/ocaml/bin/dune @@ -0,0 +1,4 @@ +(executable + (public_name celeritas) + (name main) + (libraries celeritas)) diff --git a/bindgen/ocaml/bin/main.ml b/bindgen/ocaml/bin/main.ml new file mode 100644 index 0000000..7bf6048 --- /dev/null +++ b/bindgen/ocaml/bin/main.ml @@ -0,0 +1 @@ +let () = print_endline "Hello, World!" |