RosettaCodeData/Task/Assertions/AutoHotkey/assertions-2.ahk

7 lines
191 B
AutoHotkey
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
if (a != 42)
{
OutputDebug, "a != 42" ; sends output to a debugger if connected
ListVars ; lists values of local and global variables
Pause ; pauses the script, use ExitApp to exit instead
}