> ## Documentation Index
> Fetch the complete documentation index at: https://docs.arcprize.org/llms.txt
> Use this file to discover all available pages before exploring further.

# REPL

> ARC-AGI REPL Python Example

Get up and running with arc-agi in just 4 lines:

```python theme={null}
import arc_agi
from arcengine import GameAction
arc = arc_agi.Arcade()
env = arc.make("ls20", render_mode="terminal")
```

See the actions you can take, take one, and check your scorecard:

```python theme={null}
print(env.action_space)
obs = env.step(GameAction.ACTION1)
print(arc.get_scorecard())
```
