-
-
Save pmarreck/49ff8fc0d0a84df565a7 to your computer and use it in GitHub Desktop.
how can I get this to be seen by another class' instance method?
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
class Fixnum | |
def test | |
puts how_can_i_see_this | |
end | |
end | |
how_can_i_see_this = 'hey' | |
1.test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment