This repository contains my journey of learning Rust programming language step by step.
It includes simple examples to get started, along with explanations and screenshots.
- hello_world/ β First Rust program (
fn main { println!("Hello, world!"); }) - hello_cargo/ β Using Cargo to create and run a project
- Screenshot.png β Shows how to create a Rust project with
cargo newand run it
Follow the official guide:
π https://www.rust-lang.org/tools/install
Verify installation:
rustc --version
...