Skip to content

Instantly share code, notes, and snippets.

@rafer
Created April 14, 2011 20:26
Show Gist options
  • Select an option

  • Save rafer/920427 to your computer and use it in GitHub Desktop.

Select an option

Save rafer/920427 to your computer and use it in GitHub Desktop.
ROB 4/14/2011 Trivia: Question 6
# Question 6. What does the following print?
module A
def horses
puts "Called in Module A"
end
end
module B
include A
def horses
puts "Called in Module B"
end
end
class Lamps
include B
include A
end
Lamps.new.horses
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment