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

8 lines
87 B
AutoHotkey
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
x = 1
If x
MsgBox, x is %x%
Else If x > 1
MsgBox, x is %x%
Else
MsgBox, x is %x%