# Arrays

- arrays, proper, tuples, slices, inline arrays and the rest
- first, arrays work as before
- T[] == Array<T>

```ds:src/collections.ds
const targets: string[] = ["web", "native"];
```
