You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rustlings/exercises
Yang Wen 4f7ff5d9c7
fix(structs3): Add a hint for panic (#608)
as a totally newbie to Rust, I don't know panic statement from https://doc.rust-lang.org/book/ and rustlings in the beginning. After a hard searching of [should_panic], then I figure out panic statement. 

So it's helpful to tell the learner that write a panic statement here.
3 years ago
..
advanced_errors fix(traits1): rename test functions to snake case (#854) 3 years ago
clippy fix(clippy1): Updated code to test correctness clippy lint with approx_constant lint rule 3 years ago
collections docs: Update collections README with HashMap link 3 years ago
conversions Merge pull request #781 from tlyu/advanced-errs 3 years ago
enums docs(exercises): updated all exercises readme files 3 years ago
error_handling fix(errors1): Add a comment to make the purpose more clear (#486) 3 years ago
functions docs(exercises): updated all exercises readme files 3 years ago
generics fix: add hints to generics1 and generics2 exercises 3 years ago
if docs(exercises): updated all exercises readme files 3 years ago
macros docs(exercises): updated all exercises readme files 3 years ago
modules fix(modules2): fix typo (#835) 3 years ago
move_semantics fix(move_semantics5): correct typo (#857) 3 years ago
option feat: Add move_semantics5 exercise. (#746) 3 years ago
primitive_types docs(exercises): updated all exercises readme files 3 years ago
standard_library_types Merge pull request #732 from apogeeoak/iterators5 3 years ago
strings docs(exercises): updated all exercises readme files 3 years ago
structs fix(structs3): Add a hint for panic (#608) 3 years ago
tests docs(exercises): updated all exercises readme files 3 years ago
threads docs(exercises): updated all exercises readme files 3 years ago
traits fix(traits1): rename test functions to snake case (#854) 3 years ago
variables fix(variables5): confine the answer further 3 years ago
README.md feat(modules): update exercises, add modules3 (#822) 3 years ago
quiz1.rs fix(quiz1): update to say quiz covers "If" 3 years ago
quiz2.rs fix(exercises): adding question mark to quiz2 4 years ago
quiz3.rs fix(quiz3): Force an answer to Q2 (#672) 4 years ago
quiz4.rs feat: renames test to quiz, fixes #244 4 years ago

README.md

Exercise to Book Chapter mapping

Exercise Book Chapter
variables §3.1
functions §3.3
if §3.5
move_semantics §4.1
primitive_types §4.3
structs §5.1
enums §6
modules §7
collections §8.1, §8.3
strings §8.2
error_handling §9
generics §10
option §10.1
traits §10.2
tests §11.1
standard_library_types §13.2
threads §16.1
macros §19.6
clippy n/a
conversions n/a