RosettaCodeData/Task/Logical-operations/RLaB/logical-operations-2.rlab

11 lines
62 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
>> x = int(5)
5
>> y = int(0)
0
>> !x
-6
>> !y
-1
>> x && y
0