M
Mickael Veovis
Hello,
I have this class :
class A
def toto
puts "tttt"
end
end
class B < A
def tata
end
end
I would like to now how in B.tata I can invoke, I can call the method
toto of A.
Thanks for your reply....
I have this class :
class A
def toto
puts "tttt"
end
end
class B < A
def tata
end
end
I would like to now how in B.tata I can invoke, I can call the method
toto of A.
Thanks for your reply....