RosettaCodeData/Task/Logical-operations/Oz/logical-operations.oz

11 lines
225 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
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