Initial commit

This commit is contained in:
Fabien Freling 2019-05-10 13:45:32 +02:00
parent 6499d7d7ae
commit 18f29579e0
7 changed files with 78 additions and 0 deletions

4
ocaml/bye.ml Normal file
View file

@ -0,0 +1,4 @@
let bye () = "bye"
let () =
Callback.register "Bye callback" bye;

2
ocaml/dune Normal file
View file

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

4
ocaml/hello.ml Normal file
View file

@ -0,0 +1,4 @@
let hello () = "hello"
let () =
Callback.register "Hello callback" hello;