Name: Anonymous 2008-09-23 22:37
This code does not compile.
Only the 1337est h4x0rz know the fix.
Only the 1337est h4x0rz know the fix.
class Superclass
attr :x, :y
def initialize; @x = @y = 0; end
def set x,y; @x, @y = x, y; end
end
class Childclass < Superclass
def set x, y; end
end