Created
March 22, 2012 20:11
-
-
Save monokrome/2163066 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
attr = 0 | |
something = (x) -> | |
attr = x | |
something 40 | |
console.dir attr | |
# Output: 40 |
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
something = (x) -> | |
attr = x | |
attr = 0 | |
something 40 | |
console.dir attr | |
# Output: 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment