8 lines
87 B
AutoHotkey
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%
|