From 484c4a998f9782eb0b84ec9121d6718fa6d35c1d Mon Sep 17 00:00:00 2001 From: Brian Chu Date: Thu, 18 Aug 2022 21:17:07 -0700 Subject: initial commit --- AoC2018.opam | 0 bin/dune | 4 ++++ bin/main.ml | 1 + dune-project | 26 ++++++++++++++++++++++++++ lib/dune | 2 ++ test/AoC2018.ml | 0 test/dune | 2 ++ 7 files changed, 35 insertions(+) create mode 100644 AoC2018.opam create mode 100644 bin/dune create mode 100644 bin/main.ml create mode 100644 dune-project create mode 100644 lib/dune create mode 100644 test/AoC2018.ml create mode 100644 test/dune diff --git a/AoC2018.opam b/AoC2018.opam new file mode 100644 index 0000000..e69de29 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 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)) -- cgit 1.4.1-2-gfad0