RosettaCodeData/Task/Conditional-structures/AutoHotkey/conditional-structures-1.ahk
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

7 lines
87 B
AutoHotkey

x = 1
If x
MsgBox, x is %x%
Else If x > 1
MsgBox, x is %x%
Else
MsgBox, x is %x%