RosettaCodeData/Task/Logical-operations/RLaB/logical-operations-2.rlab
2023-07-01 13:44:08 -04:00

10 lines
62 B
Text

>> x = int(5)
5
>> y = int(0)
0
>> !x
-6
>> !y
-1
>> x && y
0