diff options
Diffstat (limited to 'sorsyl/bin')
-rw-r--r-- | sorsyl/bin/dune | 4 | ||||
-rw-r--r-- | sorsyl/bin/main.ml | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/sorsyl/bin/dune b/sorsyl/bin/dune new file mode 100644 index 0000000..de2f940 --- /dev/null +++ b/sorsyl/bin/dune @@ -0,0 +1,4 @@ +(executable + (public_name sorsyl) + (name main) + (libraries sorsyl)) diff --git a/sorsyl/bin/main.ml b/sorsyl/bin/main.ml new file mode 100644 index 0000000..17197c1 --- /dev/null +++ b/sorsyl/bin/main.ml @@ -0,0 +1,3 @@ +open Sorsyl + +let () = failwith "not done yet" |