HaRe-0.8.3.0: test/testdata/AddOneParameter/FunIn3.hs
module FunIn3 where
--Default parameters can be added to definition of functions and simple constants.
--In this example: add parameter 'y' to 'foo'
main::Int
main =let foo :: Int -> Int
foo x= h + t
where (h,t) = head $ zip [1..x] [3..15] in (let a=10
b=10
in foo 5+a+b)