packages feed

hpc-tracer-0.3.0: src/Debug.hs

module Main where


fib :: Int -> Int
fib n = if n < 2 then 1 else fib(n-1) + fib (n-2)

main = print $ fib 30