> For the complete documentation index, see [llms.txt](https://docs.sannybuilder.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sannybuilder.com/troubleshooting/errors/0079.md).

# 0079: Invalid parameter in Alloc command

The first parameter in the `Alloc` [command](/language/instructions/built-in-commands.md#alloc) is not a [global variable](/language/data-types/variables.md#global-variables). This command only works with global variables.

**Possible solutions:** provide a global variable:

```
Alloc(10@, 10) // error
Alloc($var, 10) // OK
```
