RosettaCodeData/Task/Logical-operations/Pop11/logical-operations-1.pop11
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07: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;