fork(1) download
  1. f 0 = 0
  2. f 1 = 1
  3. f n = f (n - 1) + f (n - 2)
  4.  
  5. main = print (f 10)
Success #stdin #stdout 0s 6224KB
stdin
Standard input is empty
stdout
55