blob: 10e7535659522dd5c336bca7c12f20dbbae86085 [file] [log] [blame]
In Bird-style you have to leave a blank before the code.
> fact :: Integer -> Integer
> fact 0 = 1
> fact n = n * fact (n-1)
And you have to leave a blank line after the code as well.