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

Use a green color on successful run

This commit is contained in:
mo8it 2024-04-09 17:15:12 +02:00
parent d0fcd8ae8a
commit ee7d976283

View File

@ -1,4 +1,5 @@
use anyhow::{bail, Result};
use crossterm::style::Stylize;
use std::io::{stdout, Write};
use crate::exercise::Exercise;
@ -21,8 +22,7 @@ pub fn run(exercise: &Exercise) -> Result<()> {
bail!("Ran {exercise} with errors");
}
// TODO: Color
println!("Successfully ran {exercise}");
println!("{}", "✓ Successfully ran {exercise}".green());
Ok(())
}