Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 747 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 747 Bytes

rust_toys

A collection of educational toy programs to aid in learning rust. Written as part of an onboarding crash-course for folks who are new to rust.

Prerequisites

Install the various rust build/compile/run tools needed to build/compile/run these projects with rustup

Projects

A primer for those very new to rust. Introduces learners to structs/enums, traits, and dynamic dispatch

A bit of a jump from telephone_game, this introduces async primitives and the tokio runtime, as well as some other common utility crates. Learners should be aware of async rust and the tokio runtime.