RosettaCodeData/Task/Logical-operations/AutoHotkey/logical-operations.ahk

6 lines
107 B
AutoHotkey
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
a = 1
b = 0
msgbox % "a and b is " . (a && b)
msgbox % "a or b is " . (a || b)
msgbox % "not a is " . (!a)