Is it possible to make c1.say to show "lalala" without changing M1, M2, C1? I.e., use extra modules to override M2's method? Thanks,
module M1
def word
"lalala"
end
end
module M2
def word
super + 'wawawa'
end
end
class C1
include M1
include M2
def say
puts word
end
end
c1 = C1.new
c1.say # lalalawawawa