Skip to content

A guide to Rust's basics distilled for programmers

Notifications You must be signed in to change notification settings

inancgumus/learnrust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Learn Rust

I'm learning Rust, and here are my notes.

In each program, you'll find extensive explanations.

This will be a long journey. So I suggest you watching this repository for updates.

Official Rust Book Studies Index

  1. Install Rust
  2. First Program
  3. First Cargo Program
  4. Guessing Game
  5. Basics
    1. Ifs and Loops
    2. Basic Types
    3. Variables
  6. Ownership & Borrowing
    1. Scopes
    2. String Ownership
    3. Moving
    4. Funcs
    5. References
    6. Dangling-Pointer-Free
    7. Slice Internals
  7. Structs: Organizing Data
    1. Basics
    2. Example
  8. Methods: OOP Rust
  9. Enums: Another way to organize data
  10. Match Expressions
  11. Packages
  12. Collection Types
    1. Vectors
    2. Strings
    3. HashMaps
    4. 🏋️‍♂️ Exercises 🏋️‍♀️

My Notes