HotKeyIt / ahkdll

AutoHotkey_H
Mozilla Public License 2.0
266 stars 62 forks source link

If acts weird #12

Closed Visionary1 closed 7 years ago

Visionary1 commented 7 years ago
If (0 < 15 < 10)
{
    Msgbox, evaluates to true why?
}

If statement turns to true, am I missing something on If statement? or is it a bug

HotKeyIt commented 7 years ago

Because 1 < 10 If ((0 < 15) < 10)

Visionary1 commented 7 years ago

lollol I feel so stupid... thanks!