Skip to content

Instantly share code, notes, and snippets.

@jamie
Created March 3, 2014 22:05
Show Gist options
  • Select an option

  • Save jamie/9335660 to your computer and use it in GitHub Desktop.

Select an option

Save jamie/9335660 to your computer and use it in GitHub Desktop.
class Alpha; end
module Foo
class Bravo; end
def self.go
Alpha.new # success
Bravo.new # success
Foo::Bravo.new # Fail
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment