Pretty guards
Prelude defines otherwise = True, making complete guard conditions look niceread very naturally.
fac n
| n < 1 = 1
| otherwise = n * fac (n-1)
|
2 | added 49 characters in body | ||
|
Pretty guards
|
||||
|
1 |
|
||
|
|
||||