packages feed

haskell-debugger-0.13.0.0: test/integration/cabal-mhu1/foo/src/Foo.hs

module Foo where

fib :: Int -> Int
fib n
  | n <= 1 = 1
  | otherwise = fib (n - 1) + fib (n - 2)