/learning-rust

Begin your Rust journey with this beginner-friendly repository! Explore Rust's syntax, features, and best practices through hands-on examples and projects. Perfect for newcomers and experienced developers alike.

Primary LanguageRust

learning-rust

Begin your Rust journey with this beginner-friendly repository! Explore Rust's syntax, features, and best practices through hands-on examples and projects. Perfect for newcomers and experienced developers alike.

fn main() {
    println!("Hello, world!");
}
rustc main.rs
./main.exe (on Windows)
Hello, world!