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
I'm converting everything to Kotlin because I was having too many problems with Null Pointer Exception with Java. #1 is the current list of what has to be done for now.
While is everything being refactored, should be good to check the current behaviour of the relational operations in the semantic phase.
Relational Operations:
And
Allowed to boolean operands
The result is always a boolean value. If both operands are true, the result is true. Otherwise, the result is false.
Or
Allowed to boolean operands
The result is always a boolean value. If both operands are false, the result is false. Otherwise, the result is true.
Not
Allowed to a boolean operands
The result is always a boolean value. If the operand is true, the result is false. Otherwise, the result is true.
Xor
Allowed to a boolean operands
The result is always a boolean value. If the operands are different, the result is true, Otherwise, the result is false.
The text was updated successfully, but these errors were encountered:
I'm converting everything to Kotlin because I was having too many problems with Null Pointer Exception with Java. #1 is the current list of what has to be done for now.
While is everything being refactored, should be good to check the current behaviour of the relational operations in the semantic phase.
Relational Operations:
The text was updated successfully, but these errors were encountered: