func logic(a, b) { say ("a and b: ", a && b); say ("a or b: ", a || b); say ("a xor b: ", a ^ b); say (" not a: ", !a); } logic(false, true);
a and b: false a or b: true a xor b: true not a: true
Last updated 1 year ago