make the initial output prettier

This commit is contained in:
olivia 2018-05-16 15:27:57 +02:00
parent 39b3e3225a
commit 5310dfd406
1 changed files with 1 additions and 1 deletions

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();
});