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

13 lines
146 B
AutoHotkey
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
foo()
If ErrorLevel
Msgbox calling foo failed with: %ErrorLevel%
foo()
{
If success
Return
Else
ErrorLevel = foo_error
Return
}