RosettaCodeData/Task/Logical-operations/RLaB/logical-operations-2.rlab
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

10 lines
62 B
Text

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