Created
September 2, 2015 08:53
-
-
Save potfur/5fb1d91e9a7ac94aa95e to your computer and use it in GitHub Desktop.
Pure OOP
This file contains 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
public Integer max(Integer a, Integer b) { | |
return new If( | |
new GreaterThan(a, b), | |
a, b | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment