Last active
August 29, 2015 14:15
-
-
Save BenDol/825ae3f4e6bb06cef978 to your computer and use it in GitHub Desktop.
Adam is Awesome!
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
// Object Oriented Life Motto | |
Person person = world.getPerson("Adam Dempsey"); | |
if(person != null) { | |
while(person.isAlive()) { | |
if(person.isSad()) { | |
person.setSad(false); | |
person.executeAwesomeness(); | |
} | |
else { | |
person.fistBumpClosestPerson(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
YUS!