case "Hello".class
when Integer
print "A"
when String
print "B"
else
print "C"
end
Why do I get "C"? Was expecting "B" since if you evaluate "String".class you do get String.
Why do I get "C"? Was expecting "B" since if you evaluate |
|||
| show 2 more comments |
|
Confusingly, Ruby's
The
|
||||
|
|
B?"Hello".classis obviously aClassand neither anIntegernor aString, soCis the only sensible answer here. – Jörg W Mittag Feb 10 at 11:40===rather than==. – Andrew Grimm Feb 10 at 22:03