| k | Index Level | lp |
| Syntax |
{Flash.routine.name:}?l{starting.line-ending.line}
{Flash.routine.name:}?l{line.number} {Flash.routine.name:}?l{*} {Flash.routine.name:}?l |
| Category | BASIC Debugger |
| Type | Command |
| Description |
lists the current source line, or a specified range of lines, from the corresponding source program being executed.
"l*" displays the entire program. "l" followed by <return> displays the current program source line. |
| Options | |
| See Also | debugger c{!} FlashBASIC non-fatal error condition error condition z (R83) |
| Example |
*l10-17<return>
This lists lines 10 through 17. *l5<return> This lists line 5. *l*<return> This lists the whole program. |
| Warnings | The "Flash.routine.name" can only be specified if the program has been optimized through the FlashBASIC compiler (see the "o" option under the "compile" command). When a "Flash.routine.name" is specified, the corresponding debugger command is executed against the specified routine. The ":" (colon) separating the "Flash.routine.name" and the debugger command is required. |
| Compatibility | D3 7.0 AP R83 AP 6.0 FlashBASIC |
| k | Index Level | lp |