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

10 lines
225 B
Text

proc {PrintLogic A B}
%% using not short-circuiting standard library functions
{Show {And A B}}
{Show {Or A B}}
{Show {Not A}}
%% using short-circuiting keywords
{Show A andthen B}
{Show A orelse B}
end