Last active
August 29, 2015 13:56
-
-
Save slimane/9200695 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 2個の引数を受け取るsomeFuncの定義で一番お勧めなのはどれなんでしょう? */ | |
funcA a b = a * b + (a + b) | |
a `someFunc` b = a `funcA` b | |
someFunc a b = funcA a b | |
someFunc a b = a `funcA` b | |
a `someFunc` b = funcA a b |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment