And the solution

This commit is contained in:
Fabien Freling 2019-05-10 15:10:55 +02:00
parent 18f29579e0
commit c785089647
3 changed files with 6 additions and 4 deletions

View file

@ -1,2 +1,3 @@
(library
(name hello))
(executable
(name hello)
(modes object))

View file

@ -2,3 +2,4 @@ let hello () = "hello"
let () =
Callback.register "Hello callback" hello;
Callback.register "Bye callback" Bye.bye;