##
# Logical and
# -and
##
# Example:
# output: False
1 -and 0
# Logical or
# output: True
1 -or 0
# Exclusive or
# output: False
1 -xor 1
# output: False
0 -xor 0
# output: True
1 -xor 0
0 -xor 1
# Logical not
# output: False
!2
-not 2
!1
-not 1
# output: True
!0
-not 0