-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
29056f2
commit ad7cc5e
Showing
17 changed files
with
482 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# More Rust Concepts | ||
|
||
There are a few more lessons on Rust concepts that weren't covered by the ones that you just went through. I'd highly encourage you to go through a project, since concepts are introduced to you as you use them, but if you just want to go through the rest of the articles, this is the place to be! Click the next button to head over to the next article. |
2 changes: 1 addition & 1 deletion
2
...s/010_mandelbrot_set_renderer/config.json → ...ojects/010_more_rust_concepts/config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"defaultFile": "src/main.rs", | ||
"source": "https://github.com/Cratecode/rust/tree/master/sections/01_rust_projects/010_mandelbrot_set_renderer" | ||
"source": "https://github.com/Cratecode/rust/tree/master/sections/01_rust_projects/020_more_rust_concepts" | ||
} |
7 changes: 7 additions & 0 deletions
7
sections/01_rust_projects/010_more_rust_concepts/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"type": "lesson", | ||
"id": "les_more_rust_concepts", | ||
"extends": "basic", | ||
"name": "More Rust Concepts", | ||
"unit" : "rust_intro" | ||
} |
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
sections/01_rust_projects/020_mandelbrot_set_renderer/config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"defaultFile": "src/main.rs", | ||
"source": "https://github.com/Cratecode/rust/tree/master/sections/01_rust_projects/020_mandelbrot_set_renderer" | ||
} |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
sections/02_rust_project_concepts/01_rust_enums/Cargo.lock
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[package] | ||
name = "project" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
rand = "0.8.5" |
Oops, something went wrong.