Initial commit
This commit is contained in:
parent
6499d7d7ae
commit
18f29579e0
7 changed files with 78 additions and 0 deletions
4
ocaml/bye.ml
Normal file
4
ocaml/bye.ml
Normal file
|
@ -0,0 +1,4 @@
|
|||
let bye () = "bye"
|
||||
|
||||
let () =
|
||||
Callback.register "Bye callback" bye;
|
2
ocaml/dune
Normal file
2
ocaml/dune
Normal file
|
@ -0,0 +1,2 @@
|
|||
(library
|
||||
(name hello))
|
4
ocaml/hello.ml
Normal file
4
ocaml/hello.ml
Normal file
|
@ -0,0 +1,4 @@
|
|||
let hello () = "hello"
|
||||
|
||||
let () =
|
||||
Callback.register "Hello callback" hello;
|
Loading…
Add table
Add a link
Reference in a new issue