fork download
  1. test::Int->Int
  2. test x= if x==0 then x else test (x-1)
  3.  
  4. main= do
  5. print $test 10
  6.  
Success #stdin #stdout 0.02s 3536KB
stdin
Standard input is empty
stdout
0