4 lines
98 B
Ruby
4 lines
98 B
Ruby
class Author < String
|
|
attr_accessor :ip
|
|
def initialize(name, ip) @ip = ip; super(name) end
|
|
end |