T
Trans
Not arguing either way a s to whether this makes sense or not (it's
had it's lengthy discussions before).
But it does cause this strangeness:
from (irb):6:in `new'
from (irb):6
from :0
Is it really THAT unreasonable an extension? I wonder what else it
would effect, and why. I don't really even understand the error
message, but one gets the same result with:
from (irb):1:in `new'
from (irb):1
from :0
That in itself seems silly.
T.
had it's lengthy discussions before).
class Symbol
def to_str
String(self)
end
end
But it does cause this strangeness:
NameError: identifier x needs to be constantStruct.newx)
from (irb):6:in `new'
from (irb):6
from :0
Is it really THAT unreasonable an extension? I wonder what else it
would effect, and why. I don't really even understand the error
message, but one gets the same result with:
NameError: identifier x needs to be constantStruct.new('x')
from (irb):1:in `new'
from (irb):1
from :0
That in itself seems silly.
T.