# gt relational operator

The gt relational operator denotes a
greater than condition between two elements.

**Synonyms:** >

Note: > is also used as a terminator
for the dynamic array subscript reference.

## Syntax

```
exp gt exp
```

## Example(s)

```
if x gt 10 then stop
```

---
Source: https://d3codex.com/pickbasic-flashbasic/gt-relational-operator/ - part of the D3Codex reference.
