I am scribbling.
class Person def initialize(name) @name = name end def name return @name end end class Doctor < Person def name “Dr. “ + super end end
Post a Comment
0 comments:
Post a Comment