1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-06-03 08:26:17 +02:00

make the initial output prettier

This commit is contained in:
olivia 2018-05-16 15:27:57 +02:00
parent 39b3e3225a
commit 5310dfd406

View File

@ -16,6 +16,6 @@ struct Cli {
main!(|args: Cli| if let Some(e) = args.exercise {
println!("selected {}", e);
} else {
println!("Welcome to {}", Yellow.paint("rustlings"));
println!("Welcome to {}!\n", Yellow.paint("Rustlings"));
about_variables::exec();
});