packages feed

haskell-tools-builtin-refactorings-1.0.0.0: examples/Decl/FunGuards.hs

module Decl.FunGuards where

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