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

5 lines
152 B
Text

define print_logic(a, b);
printf(a and b, 'a and b is %p\n');
printf(a or b, 'a or b is %p\n');
printf(not(a), 'not a is %p\n');
enddefine;