packages feed

haskell-tools-refactor-1.0.1.1: examples/Decl/FunGuards.hs

module Decl.FunGuards where

f 0 = 1
f x | even x = 0
    | otherwise = 2