Ruby - Modules and Mixins
Identify the error in this Ruby code:
module M
def greet
"Hi"
end
end
class E
include M
def greet
super + " there"
end
end
puts E.new.greet