Skip to content

Instantly share code, notes, and snippets.

@miaout17
Created February 3, 2011 18:22
Show Gist options
  • Save miaout17/809905 to your computer and use it in GitHub Desktop.
Save miaout17/809905 to your computer and use it in GitHub Desktop.
module Hello
def self.const_missing(name)
"Constant #{name}"
end
puts ABC # Constant ABC
end
puts DEF # uninitialized constant DEF (NameError)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment