# z command

The z command loads the program source if available.

Note: This command is *not* supported in FlashBASIC.

## Syntax

```
z {program name}
```

## Example(s)

Loads source based on currently-running BASIC program file and program name:

```
*z
```

 Loads source based on specified program name in current source file:

```
*z programName
```

 Loads source from specified BASIC program file and program name:

```
*z programFile programName
```

 Loads source from specified fully-pathed BASIC program file and program name:

```
*z account,programFile, programName
```

## See also

- [BASIC/FlashBASIC Debugger](https://d3codex.com/flashbasicdebugger/basic-flashbasic-debugger/)

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