Created
October 19, 2009 22:36
-
-
Save al3x/213787 to your computer and use it in GitHub Desktop.
This file contains 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
$ irb | |
>> 1.class | |
=> Fixnum | |
>> 1.respond_to?(:dup) | |
=> true | |
>> 1.dup | |
TypeError: can't dup Fixnum | |
from (irb):3:in `dup' | |
from (irb):3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment