ocaml-native-lib/ocaml/hello.ml
2019-05-10 15:10:55 +02:00

5 lines
121 B
OCaml

let hello () = "hello"
let () =
Callback.register "Hello callback" hello;
Callback.register "Bye callback" Bye.bye;