RosettaCodeData/Task/Exceptions/AutoHotkey/exceptions-2.ahk

13 lines
146 B
AutoHotkey
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
foo()
If ErrorLevel
Msgbox calling foo failed with: %ErrorLevel%
foo()
{
If success
Return
Else
ErrorLevel = foo_error
Return
}