1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-17 00:07:35 +02:00

fix: Include exercises folder in the project structure behind a feature (#917)

closes #859
closes #913
closes #942
This commit is contained in:
x-hgg-x
2022-03-29 11:44:06 +02:00
committed by GitHub
parent cd2b5e8e3b
commit 179a75a68d
25 changed files with 112 additions and 1 deletions

26
exercises/mod.rs Normal file
View File

@ -0,0 +1,26 @@
mod advanced_errors;
mod clippy;
mod collections;
mod conversions;
mod enums;
mod error_handling;
mod functions;
mod generics;
mod r#if;
mod intro;
mod macros;
mod modules;
mod move_semantics;
mod option;
mod primitive_types;
mod quiz1;
mod quiz2;
mod quiz3;
mod quiz4;
mod standard_library_types;
mod strings;
mod structs;
mod tests;
mod threads;
mod traits;
mod variables;