Created
February 17, 2015 06:57
-
-
Save up1/942d0e02cb07ff85fc67 to your computer and use it in GitHub Desktop.
Demo :: What How When
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 void aboutMyDay() { | |
boolean isWakeUp = wakeUp(); | |
if( isWakeUp ) { | |
boolean isShower = shower(); | |
if( isShower ) { | |
boolean isClothe = putClothe(); | |
if( isClothe ) { | |
... | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment