# <> reserved characters

The <> reserved characters surround
subscripts within dynamic arrays.

## Syntax

```
dyn.array.var< ac.exp{,vc.exp{,sc.exp}}> exp < exp
```

## Description

CAUTION: Complex use
of < and > as nested dynamic
references together with Boolean operations can cause unpredictable
results.

## Example(s)

Assigns the value of variable `name` to attribute 1 in the dynamic array `customer.item`.

```
customer.item<1> = name
```
Inserts the literal `10` into a new value
appended to the end of attribute 2 in the dynamic array `item`.

```
item<2,-1> = 10
```

---
Source: https://d3codex.com/pickbasic-flashbasic/less-than-greater-than-reserved-characters/ - part of the D3Codex reference.
