Created
June 29, 2011 09:56
-
-
Save solnic/1053556 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
| ruby-1.8.7-p334 :001 > c = Class.new String | |
| => #<Class:0xb76b7ee0> | |
| ruby-1.8.7-p334 :002 > c.name | |
| => "" | |
| ruby-1.9.2-p180 :001 > c = Class.new String | |
| => #<Class:0x9ad5a44> | |
| ruby-1.9.2-p180 :002 > c.name | |
| => nil |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment