RosettaCodeData/Task/Logical-operations/AutoHotkey/logical-operations.ahk
2023-07-01 13:44:08 -04:00

5 lines
107 B
AutoHotkey

a = 1
b = 0
msgbox % "a and b is " . (a && b)
msgbox % "a or b is " . (a || b)
msgbox % "not a is " . (!a)