RosettaCodeData/Task/Logical-operations/Oz/logical-operations.oz
2023-07-01 13:44:08 -04: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