Page not found

Did you know:

The MultiWayIf GHC extension lets you write if expressions that have more than two branches.

λ> x = 5

λ> if | x < 3     -> "small"
 >    | x < 7     -> "medium"
 >    | otherwise -> "large"
 >
"medium"