Quick Start with Hüma
Welcome to the Hüma ecosystem — a high-performance language designed for precision and kinetic speed. This guide will help you optimize your environment and write your first professional Hüma program.
01Installation
The Hüma toolchain natively supports Windows, Linux, and macOS (x64/ARM64) architectures. Our installation script automatically detects your system's hardware.
curl -fsSL https://raw.githubusercontent.com/VastSea0/huma-lang/main/install.sh | sh$ huma --versionHüma 0.5.2Hüma runs with zero latency on Apple Silicon (M1/M2/M3) and modern x86_64 processors. The compiler core is built using safe, high-performance Rust.
02Verification & REPL
Verify your installation and start experimenting immediately in the interactive shell (REPL).
$ huma --versionHüma 0.5.2 (darwin aarch64)$ huma replhüma ❯ "merhaba world"'u yazdırmerhaba worldhüma ❯ çıkış03Your First Project
Hüma's package manager creates a professional project structure with just one command. This sets up your manifest, boilerplate, and dependency management.
1. Create Project
$ huma paket yeni merhaba_projesi[Başarılı!] 'merhaba_projesi' projesi oluşturuldu.2. Edit Code
12345678// Değişken tanımlayıp koşullu mantıkpuan = 85 olsunpuan > 50 ise { "Başarılı!"'yı yazdır;} yoksa { "Tekrar dene."'i yazdır;}3. Run Project
$ cd merhaba_projesi$ huma paket run baslat[Hüma] baslat betiği çalıştırılıyor...Başarılı!The 'huma paket yeni' command automatically generates a 'huma.json' file and a main entry point, preparing your project for scale from day one.