Hello World

Posted 2025-08-08 09:19:42 by Stuart ‐ 1 min read

This blog is where you'll find updates on whats going on with the Meetball Handbook.

We are just gettign started, this page was set up by Guillherme so we have a repo and a version control.

Stay Tuned

p.s. - Here some nerdy guideliens for adding pages:

// This is a comment, and is ignored by the compiler

// This is the main function
fn main() {
    // Statements here are executed when the compiled binary is called

    // Print text to the console
    println!("Hello World!");
}

println! is a macro that prints text to the console.

A binary can be generated using the Rust compiler: rustc.

$ rustc hello.rs

rustc will produce a hello binary that can be executed.

$ ./hello
Hello World!