Getting Started with Sounio

Install Sounio and write your first program in under 5 minutes

Getting Started with Sounio

Welcome to Sounio, the programming language designed for epistemic computing and scientific applications.

Installation

curl -fsSL https://souniolang.org/install.sh | sh

Using Cargo

If you have Rust installed, you can build from source:

cargo install sounio

Verify installation

sounio --version

Your First Program

Create a file called hello.sio:

fn main() with IO {
    print("Hello, World!")
}

Run it:

sounio run hello.sio

Next Steps