Initial commit.

This commit is contained in:
2024-12-03 16:59:41 +00:00
commit 46a20906c0
8 changed files with 40 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
_opam/
_build/
*.opam

1
.ocamlformat Normal file
View File

@@ -0,0 +1 @@
version=0.26.2

4
bin/dune Normal file
View File

@@ -0,0 +1,4 @@
(executable
(public_name gdcc)
(name main)
(libraries gdcc))

1
bin/main.ml Normal file
View File

@@ -0,0 +1 @@
let () = print_endline "Hello, World!"

26
dune-project Normal file
View File

@@ -0,0 +1,26 @@
(lang dune 3.16)
(name gdcc)
(generate_opam_files true)
(source
(github username/reponame))
(authors "Author Name")
(maintainers "Maintainer Name")
(license LICENSE)
(documentation https://url/to/documentation)
(package
(name gdcc)
(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/reference/dune-project/index.html

2
lib/dune Normal file
View File

@@ -0,0 +1,2 @@
(library
(name gdcc))

2
test/dune Normal file
View File

@@ -0,0 +1,2 @@
(test
(name test_gdcc))

0
test/test_gdcc.ml Normal file
View File