fork(1) download
  1. import Prelude(print, Int)
  2.  
  3. length :: [a] -> Int
  4. length _ = 0
  5. main = print (length [1, 2])
Success #stdin #stdout 0s 4584KB
stdin
Standard input is empty
stdout
0