diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-02-26 23:16:00 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-02-26 23:17:18 +0100 |
commit | 52c33969d7b358cdac40f02a8562e37f82a96135 (patch) | |
tree | 0cf9edf687d8f3be524f9b563255204af7f178a7 /2023/ocaml/day4/dune-project | |
parent | 8ff53967fac0ba5c8cee1a248a38e8e0ad1b72ee (diff) |
Add day4
Diffstat (limited to '2023/ocaml/day4/dune-project')
-rw-r--r-- | 2023/ocaml/day4/dune-project | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/2023/ocaml/day4/dune-project b/2023/ocaml/day4/dune-project new file mode 100644 index 0000000..2bf259e --- /dev/null +++ b/2023/ocaml/day4/dune-project @@ -0,0 +1,26 @@ +(lang dune 3.12) + +(name day4) + +(generate_opam_files true) + +(source + (github username/reponame)) + +(authors "Author Name") + +(maintainers "Maintainer Name") + +(license LICENSE) + +(documentation https://url/to/documentation) + +(package + (name day4) + (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 |