Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Rust versions of the examples #8

Merged
merged 13 commits into from
Jul 9, 2024
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,7 @@ keys/

# custom clang-tidy flags, also used when using clangd language server
.clang-tidy

# Rust generated files
target/
Cargo.lock
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ $ codium .
**5. Go through the exercises starting with [`01-hello-world`](./01-hello-world/README.md). Each contains a `README.md` with**
**detailed instructions and tasks to solve.**

If you prefer to do the exercises in Rust instead of C, there is a parallel list starting at [`rust01-hello-world`](./rust01-hello-world/README.md).
The exercises are generally similar, and only differ in details.


## Conventions
Throughout the tutorials, we will specify commands and outputs.
Expand Down
Loading