v0.1.0 — Early Access

Install Zolo

Get started in under 2 minutes. Available for Linux, macOS and Windows.

Select your operating system:

1

Prerequisite: Rust Toolchain

Zolo is distributed via Cargo, the Rust package manager.

If you don't have Rust installed yet:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

2. Install Zolo

Terminal
cargo install zolo

Cargo downloads, compiles and installs automatically. May take a few minutes the first time.

Verify Installation

$ zolo --version
zolo 0.1.0
$ echo 'print("Hello, Zolo!")' | zolo run -
Hello, Zolo!

VS Code Extension

Install the official extension for syntax highlighting, LSP autocompletion, DAP debugging and automatic formatting.

Syntax Highlighting Coloração de código com tema otimizado para Zolo
LSP — Language Server Autocompletar, hover docs, go-to-definition, find references
DAP — Debugger Breakpoints, watch, call stack — debug direto no VS Code
Formatação Automática Formate ao salvar com `zolo fmt`

Other Editors

Neovim

Configure via nvim-lspconfig com o servidor zolo-lsp

lspconfig.zolo.setup{}

Helix

Adicione ao languages.toml com o language server path

[[language]]
name = "zolo"

Emacs

Use eglot ou lsp-mode apontando para zolo-lsp

(add-to-list 'lsp-language-id-configuration ...)

Zed

Extension em desenvolvimento — contribua no GitHub

Em breve
enespt-br