DataBasic Reference > The Debugger > Summary of Debugger Commands > S

Comment on this topic

Documentation Comments

Use this form to comment on this topic. You can also provide any general observations about the Online Documentation, or request that additional information be added in a future release.

RealityV15.1Online Documentation (MoTW) Revision 7

S command (DataBasic debugger) (m618706+s.htm)

To

Reality

Version

Topic

Submitted by

Company

Location

Email address

Comment

 

 

S

Displays the return stack for internal and external subroutines, and external functions.

Syntax

S

Display

For each CALL or GOSUB statement, or external function call, the current program name and line number are displayed, prefixed by C (CALL), G (GOSUB) or F (function call). The current routine is at the top, prefixed by a chevron.

Comment

This same information is returned by the DataBasic SYSTEM(116) function.

Example

*S
> SSUB2 0011
G SSUB2 0002
C SSUB1 0010
G SSUB1 0002
C SPROG 0011
G SPROG 0007
G SPROG 0003

RealityV15.1 (MoTW) Revision 7Comment on this topic