10 lines
84 B
Ruby
10 lines
84 B
Ruby
# typed: strict
|
|
|
|
class User < String
|
|
def gui?
|
|
end
|
|
|
|
def self.current
|
|
end
|
|
end
|