Stack traces: Difference between revisions

Content deleted Content added
Line 55:
</pre>
=={{header|AutoHotkey}}==
{{incorrect|AutoHotkey|The output part of the task is missing; it is ''required'' to show what output is produced by the trace.}}
The local, static, and global bindings are viewable using 'Listvars'
<br> recently executed lines are available through ListLines
Line 78 ⟶ 77:
}
#Persistent</lang>
Output:
<lang autohotkey>001: f()
006: Return,g()
011: ListLines (0.05)
012: MsgBox,lines recently executed (3.81)
013: x = local to g
014: ListVars
015: MsgBox,variable bindings (3.94)
016: }
002: Return (181.66)
 
Global Variables (alphabetical)
--------------------------------------------------
0[1 of 3]: 0
ErrorLevel[1 of 3]: 0
</lang>
 
=={{header|BASIC}}==