-
Notifications
You must be signed in to change notification settings - Fork 340
false != true #217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Good catch. Are there any other boolean comparison operations I might have missed? I cannot think of any others. |
Not sure, I can check later. In ChaiScript, is |
That's the one thing I'm explicitly doing differently from C and C++: I've made bool more strongly typed so it does not automatically promote to integer. |
It also might be a good idea to write some unit tests for the boolean operators like |
I toyed around with the boolean operators a bit. This came up
Shouldn't
false != true
returntrue
instead of throwing an error?The text was updated successfully, but these errors were encountered: