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

6 lines
148 B
Text

procedure printlogic(a, b: boolean);
begin
writeln('a and b is ', a and b);
writeln('a or b is ', a or b);
writeln('not a is', not a);
end;