The TTY interface provides its own interface to the debugger. The commands available are:
<Go to the earliest frame in the stack
>Go to the latest frame in the stack
iNext frame into the stack or next later frame (callee)
i <n>Next n frames into the stack
oNext frame out of the stack or next earlier frame (caller)
o <n>Next n frames out of the stack
bDo a backtrace of the stack
fShow full frame details
eEdit definition
h {<name>}Hide the given types of frame or list hidden frame types if none given
r {<name>}Reveal the given types of frame or list the revealed frame types if none given
pPrint values of local and closure variables
cContinue interrupted computation
sStep through computation
s <n>Step through computation to nth function call
nStep over the current function to the start of the next one
trace <name>Set trace on function entry at <name>
breakpoint <name>untrace <name>unbreakpoint <name>breakpointsDisplay the list of breakpoints
ignore <name> n helpDisplay this help info
?Display this help info
cContinue interrupted code
qReturn to top level