Skip to content

Instantly share code, notes, and snippets.

@up1
Created February 17, 2015 06:57
Show Gist options
  • Save up1/942d0e02cb07ff85fc67 to your computer and use it in GitHub Desktop.
Save up1/942d0e02cb07ff85fc67 to your computer and use it in GitHub Desktop.
Demo :: What How When
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