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

6 lines
193 B
Text

const proc: writeLogic (in boolean: a, in boolean: b) is func
begin
writeln("a and b is " <& a and b);
writeln("a or b is " <& a or b);
writeln("not a is " <& not a);
end func;