練習問題 1.1.2

2つの引数のうち大きいほうを返す関数
greater
を定義せよ.



greater :: Integer -> Integer -> Integer
greater x y = if x > y then x else y