Compile Reason With An OCaml Package Using Dune
;; dune
(executable
(name hello_reason)
(libraries lwt lwt.unix))let () = {
Lwt_main.run(
Lwt_io.printf("Hello, Reason!\n")
);
};Last updated
;; dune
(executable
(name hello_reason)
(libraries lwt lwt.unix))let () = {
Lwt_main.run(
Lwt_io.printf("Hello, Reason!\n")
);
};Last updated