T
T. Onoma
class Symbol
def -@
[ self ]
end
def +@
[ self ]
end
end
p -:a # => [ :a ]
p +:a # => :a
What's the problem here?
T.
def -@
[ self ]
end
def +@
[ self ]
end
end
p -:a # => [ :a ]
p +:a # => :a
What's the problem here?
T.