Guest User

Untitled

a guest
Feb 19th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. require "rubygems"
  2. require "merb-core"
  3.  
  4. class Foo
  5. class_inheritable_accessor :foo
  6. end
  7.  
  8. class Bar < Foo
  9.  
  10. end
  11.  
  12. Foo.foo = "Hello"
  13. p Bar.foo
  14.  
  15. #=> "Hello"
Add Comment
Please, Sign In to add comment