# Начало работы

Lumen - это мультипарадигменный интерпретируемый язык программирования, работающий на платформе .NET Framework.

Программа представляет из себя файл с исходным кодом программы. Для того, чтобы начать пользоваться языком, скачайте интерпретатор, далее создайте файл с любым именем и запустите интерпретатор из консоли.

Запуск интерпретатора в общем случае выглядит так:

```
lmi файл
```

Например, создадим файл `main.lm` со следующим содержимым:

```fsharp
println "Hello, world!"
```

После запуска вы увидите что в консоли вывелось сообщение Hello, world!:

```
> lmi main.lm
Hello, world!
```


---

# 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://danielargent.gitbook.io/lumen/master.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.
