mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
e075fef89f
* reason: refactoring * reason: add superherointj as maintainer * reason: ppxlib migration Migrate from ocaml-migrate-parsetree to ppxlib fixing conflicts in downstream dependencies. * reason: add downloadPage to meta * reason: removed maintainer volth by his request * reason: add test hello
7 lines
110 B
ReasonML
7 lines
110 B
ReasonML
let sayHello = () => {
|
|
let fromWhom = "From Reason";
|
|
print_endline("Hello " ++ fromWhom);
|
|
};
|
|
|
|
sayHello();
|