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

8 lines
237 B
Text

logical_ops: procedure (t, u);
declare (t, u) bit (1);
put skip list (t & u);
put skip list (t | u); /* logical or */
put skip list (^t); /* logical not */
put skip list (t ^ u); /* exclusive or */
end logical_ops;