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