fork download
  1. let f = function 0 -> false | 1 -> true
  2. let () = Printf.printf "%B %B" (f 0) (f 1)
Success #stdin #stdout 0s 4724KB
stdin
Standard input is empty
stdout
false true