module A
def fine
p "cool"
end
def right
p "hello"
fine
p "ok"
end
end
class B
include A
def fine
p "world"
end
end
B.new.right
module A
def fine
p "cool"
end
def right
p "hello"
fine
p "ok"
end
end
class B
include A
def fine
p "world"
end
end
B.new.right