ocaml-native-lib/ocaml/hello.ml

6 lines
121 B
OCaml
Raw Normal View History

2019-05-10 13:45:32 +02:00
let hello () = "hello"
let () =
Callback.register "Hello callback" hello;
2019-05-10 15:10:55 +02:00
Callback.register "Bye callback" Bye.bye;