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

8 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%