RosettaCodeData/Task/Conditional-structures/AutoHotkey/conditional-structures-1.ahk

8 lines
87 B
AutoHotkey
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
x = 1
If x
MsgBox, x is %x%
Else If x > 1
MsgBox, x is %x%
Else
MsgBox, x is %x%