Stack traces: Difference between revisions

Content deleted Content added
Chunes (talk | contribs)
Add Factor example
Dedalus (talk | contribs)
Line 2,016: Line 2,016:
inner 40</pre>
inner 40</pre>


=={{header|VBA}}==
In VBE the VBA Editor hitting Control+L while stepping through your code in debug mode will pop up a window which displays the call stack.
=={{header|zkl}}==
=={{header|zkl}}==
<lang zkl>fcn f{println("F");vm.stackTrace().println()} fcn g{println("G")}
<lang zkl>fcn f{println("F");vm.stackTrace().println()} fcn g{println("G")}