6 lines
191 B
AutoHotkey
6 lines
191 B
AutoHotkey
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
|
|
}
|