https://github.com/thebracket/ultimaterust1-ecosystem
Code to accompany Ardan Labs - Ultimate Rust 1, Condensed class.
https://github.com/thebracket/ultimaterust1-ecosystem
Last synced: 24 days ago
JSON representation
Code to accompany Ardan Labs - Ultimate Rust 1, Condensed class.
- Host: GitHub
- URL: https://github.com/thebracket/ultimaterust1-ecosystem
- Owner: thebracket
- Created: 2022-12-12T19:23:52.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-15T14:43:08.000Z (over 3 years ago)
- Last Synced: 2025-01-10T22:41:08.586Z (over 1 year ago)
- Language: Rust
- Size: 1.05 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ultimate Rust 1 - The Rust Ecosystem (Condensed)
Code to accompany Ardan Labs' Ultimate Rust 1
Examples includes:
* [Hello](https://github.com/thebracket/UltimateRust1-EcoSystem/tree/main/ex1/hello) - The first "Hello World" example.
* [Greet the User](https://github.com/thebracket/UltimateRust1-EcoSystem/tree/main/ex2/hello) - Hello (your name).
* [Use Modules](https://github.com/thebracket/UltimateRust1-EcoSystem/tree/main/ex3/hello) - Hello (your name), now with separate code files.
* [Errors & Dependencies](https://github.com/thebracket/UltimateRust1-EcoSystem/tree/main/ex4/hello) - Error Handling
* [Your First Library](https://github.com/thebracket/UltimateRust1-EcoSystem/tree/main/ex5) - Libraries & Dependencies
* [Workspaces](https://github.com/thebracket/UltimateRust1-EcoSystem/tree/main/ex6/hello) - Organize local projects into a workspace
* [Unit Testing](https://github.com/thebracket/UltimateRust1-EcoSystem/tree/main/ex7/hello) - Use Unit Tests to Validate your Code