You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The return code of false is 1, which means it's treated like an exception.
Probably might sense to change how boolean toString works cause it's unintuitive right now. I don't remember what was the reason I did it like this. I think it's so that invoking that variable would behave similarly to invoking true or false and so that one could use this in comparisons or logic.
The following error occurred
boolean trueVar=true
$var:trueVar toString #true
boolean falseVar=false
$var:falseVar toString #UNCAUGHT EXCEPTION: toString
Is it a bug? Or is my implementation incorrect?
The text was updated successfully, but these errors were encountered: