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

# 0064: Mission label not found

The compiler can't find the starting [label](/language/data-types.md#labels) of a mission.

**Possible solutions:** make sure that each mission declared in the header exists in the source file. Either add a missed mission, or remove the declaration:

```
DEFINE MISSIONS 1
DEFINE MISSION 0 AT @MISSION_0

:MAIN

// error, MISSION_0 not found 
```
