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

# Tokens

A token is a semantical group of charakters. Special tokens are tagges with leading #.

| Token    | Description                                                                          | Example          |
| -------- | ------------------------------------------------------------------------------------ | ---------------- |
| #number  | A number that allows seperation, decimal point, binary and hexadecimal digits        | 3.14e5           |
| #boolean | Boolean values                                                                       | true             |
| #name    | An Identifier like names of methods and classes. The default naming rule: \[\_a-z]\* | My\_SuperClass   |
| #string  | A string constant. Can be configured to allow unicode and escape sequences           | "hello \t world" |
| #sof     | Represents the start of a file                                                       |                  |
| #eof     | Represents the end of a file                                                         |                  |

Silverfly has a list of predefined symbols that includes the special token types above and the most common symbols from various programming languages. The lexer will be populated on initialization with this list so you don't have to register all your operatory by your self. The list can be found [here](https://github.com/furesoft/Silverfly/blob/main/Source/Silverfly/PredefinedSymbols.cs).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://furesoft.gitbook.io/silverfly/getting-started/tokens.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.
