summary refs log tree commit diff stats
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
downloadAdventOfCode2018-484c4a998f9782eb0b84ec9121d6718fa6d35c1d.tar.gz
initial commit
-rw-r--r--AoC2018.opam0
-rw-r--r--bin/dune4
-rw-r--r--bin/main.ml1
-rw-r--r--dune-project26
-rw-r--r--lib/dune2
-rw-r--r--test/AoC2018.ml0
-rw-r--r--test/dune2
7 files changed, 35 insertions, 0 deletions
diff --git a/AoC2018.opam b/AoC2018.opam
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/AoC2018.opam
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!"
diff --git a/dune-project b/dune-project
new file mode 100644
index 0000000..ce69210
--- /dev/null
+++ b/dune-project
@@ -0,0 +1,26 @@
+(lang dune 3.4)
+
+(name AoC2018)
+
+(generate_opam_files true)
+
+(source
+ (github username/reponame))
+
+(authors "Author Name")
+
+(maintainers "Maintainer Name")
+
+(license LICENSE)
+
+(documentation https://url/to/documentation)
+
+(package
+ (name AoC2018)
+ (synopsis "A short synopsis")
+ (description "A longer description")
+ (depends ocaml dune)
+ (tags
+  (topics "to describe" your project)))
+
+; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
diff --git a/lib/dune b/lib/dune
new file mode 100644
index 0000000..050d705
--- /dev/null
+++ b/lib/dune
@@ -0,0 +1,2 @@
+(library
+ (name AoC2018))
diff --git a/test/AoC2018.ml b/test/AoC2018.ml
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/test/AoC2018.ml
diff --git a/test/dune b/test/dune
new file mode 100644
index 0000000..36cc5cf
--- /dev/null
+++ b/test/dune
@@ -0,0 +1,2 @@
+(test
+ (name AoC2018))