.Q.bt[]
Dumps the backtrace to stdout at any point during execution or debug.
q)f:{{.Q.bt[];x*2}x+1}
q)f 4
[2] f@:{.Q.bt[];x*2}
^
[1] f:{{.Q.bt[];x*2}x+1}
^
[0] f 4
^
10
q)g:{a:x*2;a+y}
q)g[3;"hello"]
'type
[1] g:{a:x*2;a+y}
^
q)).Q.bt[]
>>[1] g:{a:x*2;a+y}
^
[0] g[3;"hello"]
^
>> marks the current stack frame. (Since V4.0 2020.03.23.)
The debugger itself occupies a stack frame, but its source is hidden. (Since V3.5 2017.03.15.)