Exceptions: Difference between revisions

m
→‎{{header|AutoHotkey}}: Minor indentation and casing edit
(+ AutoHotkey)
m (→‎{{header|AutoHotkey}}: Minor indentation and casing edit)
Line 141:
foo()
If ErrorLevel
Msgbox calling foo failed with: %ErrorLevel%
 
foo()
{
ifIf success
Return
return
elseElse
ErrorLevel = foo_error
returnReturn
}