packages feed

hhp-0.0.0: test/data/Info.hs

module Info () where

fib :: Int -> Int
fib 0 = 0
fib 1 = 1
fib n = fib (n - 1) + fib (n - 2)