Ruby - Modules and Mixins
Given this code:
What is the output?
module A
def call
"A" + super
end
end
module B
def call
"B" + super
end
end
class X
prepend A
prepend B
def call
"X"
end
end
puts X.new.callWhat is the output?
