RosettaCodeData/Task/Logical-operations/AppleScript/logical-operations.applescript
2026-04-30 12:34:36 -04:00

5 lines
61 B
AppleScript

on logic(a, b)
log a and b
log a or b
log not a
end logic