packages feed

haskell-tools-experimental-refactorings-1.0.0.0: examples/Refactor/IfToGuards/Simple_res.hs

module Refactor.IfToGuards.Simple where

max a b | a > b = a
        | otherwise = b