# Introdução

{% hint style="info" %}
Go é expressivo, conciso, limpo e eficiente. Seus mecanismos de concorrência tornam mais fácil escrever programas que tirarão o máximo proveito de vários núcleos e máquinas em rede, enquanto o seu novo sistema de tipos permite a construção flexível e modular do programa. Go compila rapidamente para código de máquina ainda tem a conveniência de garbage collection e o poder de reflexão em tempo de execução. É uma linguagem compilada rápida, de tipagem estática, que parece uma linguagem interpretada digitada de forma dinâmica
{% endhint %}

{% tabs %}
{% tab title="Go" %}

```go
package main

import "fmt"

func main() {
    fmt.Println("Seja bem vindo!!!")
}
```

{% endtab %}
{% endtabs %}

{% content-ref url="golang/introducao" %}
[introducao](https://golang.farnetani.ninja/golang/introducao)
{% endcontent-ref %}

{% content-ref url="golang/exemplos" %}
[exemplos](https://golang.farnetani.ninja/golang/exemplos)
{% endcontent-ref %}


---

# 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://golang.farnetani.ninja/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.
