1
2
3
4
5
6
7
let run () =
  Random.self_init ();

  if Random.int 2 = 0 then
    print_endline "Hello, world!"
  else
    print_endline "We come in peace."