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

3 lines
101 B
OCaml

(* TODO: Write a function `greet ()` that returns "hello world!" *)
let greet () = "hello world!";;