Localized V2 rewrite for this language is in progress. Showing English-first content for now.

Primeros Pasos

Instala el compilador, ejecuta tu primer programa .sio y aprende lo básico.

Primeros Pasos

Los programas de Sounio son archivos .sio que se compilan y ejecutan con el compilador souc.

1) Instalar souc

Compilar desde el código fuente (recomendado)

git clone https://github.com/sounio-lang/sounio.git
cd sounio

# Build the compiler
cargo build -p souc --release

# Run it from the repo
./target/release/souc --version

Opcional: agregar souc a tu PATH

sudo cp ./target/release/souc /usr/local/bin/souc

2) Hola, Mundo

Crea hello.sio:

fn main() with IO {
    println("Hello, Sounio!")
}

Verifica tipos y ejecútalo:

souc check hello.sio
souc run hello.sio

3) Próximos Pasos