RosettaCodeData/Task/Logical-operations/AutoHotkey/logical-operations.ahk
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07: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)