https://github.com/menurivera/ultimate-rust
https://github.com/menurivera/ultimate-rust
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/menurivera/ultimate-rust
- Owner: menuRivera
- Created: 2026-04-09T20:42:24.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-04-29T00:00:11.000Z (3 months ago)
- Last Synced: 2026-06-11T19:29:55.486Z (about 2 months ago)
- Language: Rust
- Size: 646 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ultimate Rust Crash Course
Course: https://www.udemy.com/course/ultimate-rust-crash-course/
Exercises from Nathan Stocks' hands-on Rust crash course covering fundamentals, ownership, traits, and a final invaders project.
## Projects
- `hello` - Getting started
- `variables` - Variables and mutability
- `functions` - Functions and modules
- `simple_types` - Primitive types
- `control_flow` - Control flow
- `structs` - Structs and methods
- `enums` - Enums and pattern matching
- `traits` - Traits and generics
- `collections` - Vectors, hash maps, strings
- `ownership_and_references` - Ownership and borrowing
- `invaders` - Final project (Space Invaders clone)
## Run
```bash
cd
cargo run
```