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

10 lines
50 B
Text

>> x = 5
5
>> y = 0
0
>> !x
0
>> !y
1
>> x && y
0