# Global Common

Global common is a named BASIC variable space used to store
variables and arrays in the identified area that is only initialized
at logon.

Global common space is common for all levels of the same
process (that is, level pushes, executes, file-time bridges &
indexes, and so on).

Variables and/or arrays can be used for
communication between programs and subroutines providing interprogram
communication.

## Syntax

```
common /ID/variable|array{,variable|array...}
```

## Example(s)

```
common /person/ name, company
```

## See also

- [common statement](https://d3codex.com/pickbasic-flashbasic/common-statement/)
- [Named common](https://d3codex.com/pickbasic-flashbasic/named-common/)

---
Source: https://d3codex.com/pickbasic-flashbasic/global-common/ - part of the D3Codex reference.
