# null statement

The null statement performs no operation,
other than to provide an instruction where one is required. This is
usually used for program readability.

## Syntax

```
null
```

## Example(s)

```
if answer = "yes" then print "Are you sure?" else null
```

---
Source: https://d3codex.com/pickbasic-flashbasic/null-statement/ - part of the D3Codex reference.
