Initial commit.
This commit is contained in:
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
_opam/
|
||||
_build/
|
||||
*.opam
|
||||
|
1
.ocamlformat
Normal file
1
.ocamlformat
Normal file
@@ -0,0 +1 @@
|
||||
version=0.26.2
|
4
bin/dune
Normal file
4
bin/dune
Normal file
@@ -0,0 +1,4 @@
|
||||
(executable
|
||||
(public_name gdcc)
|
||||
(name main)
|
||||
(libraries gdcc))
|
1
bin/main.ml
Normal file
1
bin/main.ml
Normal file
@@ -0,0 +1 @@
|
||||
let () = print_endline "Hello, World!"
|
26
dune-project
Normal file
26
dune-project
Normal 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
|
0
test/test_gdcc.ml
Normal file
0
test/test_gdcc.ml
Normal file
Reference in New Issue
Block a user