> 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/0055.md).

# 0055: Identifier not found

The compiler can't resolve the identifier (a [variable](/language/data-types/variables.md) name, [constant](/language/data-types/constants.md) value, etc) as it's missing or is invalid.

**Possible solutions:** write the correct identifier:

```
00A5: 0@ = create_car # at 0.0 0.0 0.0 // error, model name not found
00A5: 0@ = create_car #PONY at 0.0 0.0 0.0 // OK
```
