Created
March 23, 2013 02:01
-
-
Save acook/5226076 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
| x = 1 | |
| some_loop_or_iterator { | |
| x = 0 | |
| x = x + 1 | |
| } | |
| x # what is the value of x? |
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
| y = false | |
| if y then | |
| z = 2 | |
| end | |
| z # what is the value of z? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment