show/hide this revision's text 2 added 49 characters in body

Pretty guards

Prelude defines otherwise = True, making complete guard conditions look niceread very naturally.

fac n
  | n < 1     = 1
  | otherwise = n * fac (n-1)
show/hide this revision's text 1

Prelude defines otherwise = True, making complete guard conditions look nice.

fac n
  | n < 1     = 1
  | otherwise = n * fac (n-1)