# g command (FlashBASIC Debugger)

The g command resumes execution of a
program after it has been interrupted by the execution of a BASIC/FlashBASIC debug statement or by pressing ESC or BREAK.

## Syntax

```
g{line.number}
```
The optional line number is only valid for programs compiled
by the native compiler (unflashed) with end-of-line (EOL) characters.
The g command does not resume execution after an
error condition. The g command *must* follow the e command to resume the program.

Note: The FlashBASIC debugger is *not* able to jump to a specific
line number.

---
Source: https://d3codex.com/flashbasicdebugger/g-command-flashbasic-debugger/ - part of the D3Codex reference.
