An open API service indexing awesome lists of open source software.

https://github.com/menurivera/ultimate-rust


https://github.com/menurivera/ultimate-rust

Last synced: 25 days ago
JSON representation

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
```