> For the complete documentation index, see [llms.txt](https://todepond.gitbook.io/spacetode/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://todepond.gitbook.io/spacetode/arguments.md).

# Arguments

You can set the arguments you expect when constructing an atom (and their default values).

```
element Explosion {
    arg size 10
    arg shape "circle"
}
```

When you make an Explosion atom somewhere in your code, you could use those arguments:

```
new Explosion(20, "circle")
```

Note: You would still need to implement what those arguments do in your element's code.
