Created
March 25, 2016 22:22
-
-
Save smathy/d3f70e727f5eb8c0af2c 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
[1] pry(main)> class Foo | |
[1] pry(main)* private | |
[1] pry(main)* def foo | |
[1] pry(main)* "FOO!" | |
[1] pry(main)* end | |
[1] pry(main)* | |
[1] pry(main)* class Bar < self | |
[1] pry(main)* def hmm | |
[1] pry(main)* foo | |
[1] pry(main)* end | |
[1] pry(main)* end | |
[1] pry(main)* end | |
=> :hmm | |
[2] pry(main)> Foo::Bar.new.hmm | |
=> "FOO!" | |
[4] pry(main)> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment