Skip to content

Instantly share code, notes, and snippets.

@briu
Created August 26, 2016 11:15
Show Gist options
  • Save briu/4498f1a20970b9b2ea95c12bdda0a180 to your computer and use it in GitHub Desktop.
Save briu/4498f1a20970b9b2ea95c12bdda0a180 to your computer and use it in GitHub Desktop.
interview
module A
def self.test
"FOO"
end
end
module Yo
module A
def self.test
"BAR"
end
end
def Yo.show_me_foo
end
def Yo.show_me_bar
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment