my-solutions/codewars/ocaml/fundamentals/function-1-hello-world/main.ml

3 lines
101 B
OCaml
Raw Normal View History

2024-02-20 00:44:19 +05:00
(* TODO: Write a function `greet ()` that returns "hello world!" *)
let greet () = "hello world!";;