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

10 lines
50 B
Text

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