# To

Adds a list from the last number to the parameter to the list.

## Concepts Used

* [Scopes](scopes.md)

## Overview

`to` can be used to generate ranges:

```oto
1 to 10
# 1 2 3 4 5 6 7 8 9 10
```

## Description

## Examples

### Negative Ranges

```oto
-5 to -8
# -5 -6 -7 -8
```

## Common Problems

## Further Reading

* [Each](each.md)
* [Math](math.md)