# Getting Started

## The List

Like in other stack-based languages, Otomescript has a list of values which can be modified using words.

**Example:**

```otomescript
1 2 3
# The list: 1, 2, 3
clear
# The list is empty.
"One line" "Second Line"
# The list: "One line", "Second Line"
```

The list consists only of strings, which may be interpreted as numbers by some words.

## Common Problems

## Further Reading

* [Strings](strings.md)
* [Scopes](scopes.md)
* [Error Handling](error_handling.md)