1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-16 10:51:42 +02:00

Show a success message after resetting

This commit is contained in:
mo8it 2024-03-30 21:13:28 +01:00
parent 79ca821e26
commit 23f0fae1c8

View File

@ -212,19 +212,17 @@ If you are just starting with Rustlings, run the command `rustlings init` to ini
Subcommands::Run { name } => {
let exercise = find_exercise(&name, &exercises);
run(exercise, verbose).unwrap_or_else(|_| std::process::exit(1));
}
Subcommands::Reset { name } => {
let exercise = find_exercise(&name, &exercises);
reset(exercise)?;
println!("The file {} has been reset!", exercise.path.display());
}
Subcommands::Hint { name } => {
let exercise = find_exercise(&name, &exercises);
println!("{}", exercise.hint);
}