Skip to content

Latest commit

Β 

History

History
32 lines (22 loc) Β· 975 Bytes

File metadata and controls

32 lines (22 loc) Β· 975 Bytes

Basics

This folder is for beginner Rust developers. It helps you build a solid foundation through small exercises. Each module focuses on a single core concept so learning stays focused and practical.

🎯 Goals

References: Experimental fork of TRPL

Modules

Each module focuses on one essential Rust concept.

  • 01_hello/ β€” Basic syntax
  • 02_ownership/ β€” Ownership and Borrowing
  • 03_generics/ β€” Generics and Traits
  • 04_modules/ β€” Modules and Vec / String / HashMap
  • 05_erro_handling/ β€” Option / Result error handling and testing

⏱ Estimated time: 10 hours

πŸš€ Quick Start

cd basics/01_hello
cargo run