-
Notifications
You must be signed in to change notification settings - Fork 0
Boolean Operators
Michael edited this page Mar 29, 2021
·
1 revision
There are true
and false
keywords in AVBEEL. They are returned from the equality operator and the boolean operators. They are consumed by if statements.
There are three boolean operators in AVBEEL, and
or &&
, or
or ||
, and not
or !
Some examples:
Enter Code: and true false
Time: <2ms
Result: false
Enter Code: = not true ! true
Time: <2ms
Result: true
= not true ! true
-> = (not true) (! true)
-> = false false
-> true