Pre-v2.0 beta 6 tests

Discuss the future of the AutoHotkey language
iseahound
Posts: 1427
Joined: 13 Aug 2016, 21:04
Contact:

Pre-v2.0 beta 6 tests

Post by iseahound » 27 Jun 2022, 23:10

Wrapping Zero Division Error

Code: Select all

try x := 1/0
MsgBox(x?) ; parenthesis is necessary

try x := 2/0
try y := 5/3
z := (x ?? 0) + (y ?? 0)
MsgBox(z)
This is really great 👍

Return to “AutoHotkey Development”