class C
def x
puts "this is method <x>"
end
def y
puts "this is method <y>, about to call x without dot."
x # C.x
end
end
c = C.new
c.y
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)