# Gentee script programming language

Gentee is a strongly typed procedural language. First of all, it is designed to write scripts to automate repetitive actions and processes on the computer. The Gentee language has a simple syntax and it is easy to learn and maintain.

**GitHub repository:** [**https://github.com/gentee/gentee**](https://github.com/gentee/gentee)\
**Download for Linux, macOS, Windows:** [**https://github.com/gentee/gentee/releases**](https://github.com/gentee/gentee/releases)\
Documentation GitHub repository: <https://github.com/gentee/docs-gentee>\
Development language: Go

```go
run : ||"Hello, world!\r\n"
```

```go
run : $ echo "Hello, world!"
```

```go
run {
    str name = ReadString(`Enter your name: `)
    Println(`Hello, %{ ?(*name>0, name, `world`) }!` )
}
```

Want to see a sample application that successfully uses the Gentee programming language? Take a look at [**Eonza**](https://www.eonza.org/), a free cross-platform program for easy creation and management of scripts.

## Documentation

* [Gentee Programming language (English)](https://docs.gentee.org)
* [Язык программирования Gentee (Russian)](https://ru.gentee.org)


---

# 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.gentee.org/readme.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.
