Good catch!
I accidentally pulled in the wrong code example here. The correct bit of code is:
(1 == 0)&.to_s
Since 1 == 0 is false and false is not nil, we get “false”.
Thanks!
R
Good catch!
I accidentally pulled in the wrong code example here. The correct bit of code is:
(1 == 0)&.to_s
Since 1 == 0 is false and false is not nil, we get “false”.
Thanks!
R