Skip to content

Instantly share code, notes, and snippets.

@qrush
Created March 6, 2014 17:47
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 qrush/9395413 to your computer and use it in GitHub Desktop.
Save qrush/9395413 to your computer and use it in GitHub Desktop.
irb(main):002:0> class Foo; class_attribute :bar; end
=> [:bar]
irb(main):006:0> Foo.bar = "LOL"
=> "LOL"
irb(main):007:0> Foo.bar
=> "LOL"
irb(main):008:0> Foo.new.bar
=> "LOL"
@ngauthier
Copy link

lol

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment