Skip to content
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

Include the semantic of logical operations #4

Closed
meevee98 opened this issue Dec 13, 2019 · 0 comments
Closed

Include the semantic of logical operations #4

meevee98 opened this issue Dec 13, 2019 · 0 comments
Assignees

Comments

@meevee98
Copy link
Owner

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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant