Created
November 27, 2015 07:11
-
-
Save meeDamian/22d4192f65794952e11d 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
| mee = new Person() | |
| mee.code() while mee.hasCoffee() and mee.isAwake() |
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
| Damian mee = new Person(); | |
| do { | |
| try { | |
| someNewGreatIdea(); | |
| mee.setGreatSuccess(true); | |
| } catch(UtterFailureException uf) { | |
| mee.drawConclusionsAndLearnFrom(uf); | |
| mee.incExperience(); | |
| continue; | |
| } | |
| } while(mee.getGreatSuccess()); |
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
| mee = Person() | |
| while(mee.awake()): | |
| mee.code() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment