Skip to content

Instantly share code, notes, and snippets.

@tetsu-miyagawa
Last active August 29, 2015 14:23
Show Gist options
  • Save tetsu-miyagawa/b5890078fcd4374f55e8 to your computer and use it in GitHub Desktop.
Save tetsu-miyagawa/b5890078fcd4374f55e8 to your computer and use it in GitHub Desktop.
関数プログラミング入門 練習問題1.1.2
greater :: (Integer, Integer) -> Integer
greater (a, b) = if a > b then a else b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment