Created
January 12, 2011 10:03
-
-
Save oleganza/775960 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
| def go_shopping | |
| buy_gloves do | |
| buy_shoes do | |
| buy_coat do | |
| yield | |
| end | |
| end | |
| eat_sandwitch do # in parallel to buying shoes | |
| drink_coke do | |
| yield | |
| end | |
| ebd | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment