Skip to content

Instantly share code, notes, and snippets.

@brainopia
Created February 13, 2012 21:55
Show Gist options
  • Save brainopia/1820803 to your computer and use it in GitHub Desktop.
Save brainopia/1820803 to your computer and use it in GitHub Desktop.
# fun with constant resolution
class Magic
def self.const_missing(const)
'for children'
end
end
p Magic::Bunny # => for children
Mushroom = 'for adults'
p Magic::Mushroom # => for adults
@gazay
Copy link

gazay commented Feb 20, 2012

о_О

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