Skip to content

Instantly share code, notes, and snippets.

@jarmo
Created October 9, 2010 21:45
Show Gist options
  • Save jarmo/618626 to your computer and use it in GitHub Desktop.
Save jarmo/618626 to your computer and use it in GitHub Desktop.
module A
def a
self.class.const_get :CONST
end
end
class B
include A
CONST = "Hello"
end
puts B.new.a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment