fork download
  1. open System
  2.  
  3. let isEven x = (x % 2) = (0)
  4.  
  5. printfn "%b" (isEven 19)
  6. printfn "%b" (isEven 20)
Success #stdin #stdout 0.06s 24656KB
stdin
Standard input is empty
stdout
false
true