Skip to content

Instantly share code, notes, and snippets.

@smathy
Created April 3, 2016 22:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smathy/555432f9873ec4e3ff3e56862c75f7af to your computer and use it in GitHub Desktop.
Save smathy/555432f9873ec4e3ff3e56862c75f7af to your computer and use it in GitHub Desktop.
~/work/eos pry -f master ~ 1 16:26:45
[1] pry(main)> class User; end
=> nil
[2] pry(main)> class Grader < User; end
=> nil
[3] pry(main)> class User; class Cell; end; end
=> nil
[4] pry(main)> class User; class Cell::Row; end end
=> nil
[5] pry(main)> class Grader; class Cell::Row; end; end
=> nil
[6] pry(main)> Grader::Cell::Row
=> User::Cell::Row
[7] pry(main)>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment