# 0117: Invalid function name

Compiler found a [function declaration](/language/functions.md#signature) with the name that is not a valid identifier. A function name must be alphanumeric starting with a letter or an underscore (`_`).

#### Examples:

```pascal
function 123 // Error: Invalid function name 123. Name must be a valid identifier.
end
```

#### Possible solutions:

* Rename the function so that its name is a valid identifier:

```pascal
function f123
end
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sannybuilder.com/troubleshooting/errors/0117.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
