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