Created
June 2, 2011 22:09
-
-
Save johnpena/1005445 to your computer and use it in GitHub Desktop.
What happens?
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
| class Foo | |
| class << self | |
| def bar | |
| "baz" | |
| end | |
| end | |
| end | |
| self = Foo.new | |
| self.bar | |
| # syntax error | |
| # its self all the way down |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment