summary refs log tree commit diff stats
path: root/bin
diff options
context:
space:
mode:
authorBrian Chu <brianmchu42@gmail.com>2022-08-18 21:17:07 -0700
committerBrian Chu <brianmchu42@gmail.com>2022-08-18 21:17:07 -0700
commit484c4a998f9782eb0b84ec9121d6718fa6d35c1d (patch)
treeb667b6fa6d2ab0616b83dca8e874351807a33613 /bin
downloadAdventOfCode2018-484c4a998f9782eb0b84ec9121d6718fa6d35c1d.tar.gz
initial commit
Diffstat (limited to 'bin')
-rw-r--r--bin/dune4
-rw-r--r--bin/main.ml1
2 files changed, 5 insertions, 0 deletions
diff --git a/bin/dune b/bin/dune
new file mode 100644
index 0000000..c6fe6fc
--- /dev/null
+++ b/bin/dune
@@ -0,0 +1,4 @@
+(executable
+ (public_name AoC2018)
+ (name main)
+ (libraries AoC2018))
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!"