Metadata-Version: 2.4
Name: brasa-lang
Version: 0.2.0
Summary: Brasa Programming Language
Author: Adriano
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# What is Brasa?

Brasa is an interpreted programming language written in Python. By utilizing Portuguese-based syntax, it provides a natural and intuitive learning curve for native speakers and children who may find the English-centric nature of traditional coding (like C++ or Java) intimidating.

Look at the a basic program written in Brasa

## Brasa Docs

For a deep dive into Brasa philosophy and full syntax, visit the [Official Documentation](https://brasa-lang.github.io/).

## ⚡ Quick look

```
// example.brasa

importe std.io como io;

io.diga("Digite seu nome: ");
texto nome := io.leia();

func bem_vindo(texto nome)->texto{
  retorne "Bem vindo, " + nome + "!";
}

texto mensagem := bem_vindo(nome);

io.diga(mensagem);
```

For a brief introduction, see [overview](https://brasa-lang.github.io/overview/)

## 🚀 Getting Started

Brasa is built with [Python](https://www.python.org/downloads/) and can be installed via pip

```
pip install brasa-lang
```

For detailed instructions, see [installation guide](https://brasa-lang.github.io/tutorial/getting-started/installation/)
