blob: 10e7535659522dd5c336bca7c12f20dbbae86085 (
plain)
1
2
3
4
5
6
7
|
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.
|