make the default output a bit nicer

This commit is contained in:
liv 2019-01-09 20:44:55 +01:00
parent e03a98cbf6
commit 7fa2f87c8b
2 changed files with 11 additions and 9 deletions

View File

@ -1,4 +1,2 @@
## Welcome to Rustlings!
To get started, run `rustlings verify` in order to get the first exercise.
Make sure to have your editor open!

View File

@ -32,13 +32,17 @@ fn main() {
let ss = SyntaxSet::load_defaults_newlines();
let ts = ThemeSet::load_defaults();
println!(r#" _ _ _ "#);
println!(r#" _ __ _ _ ___| |_| (_)_ __ __ _ ___ "#);
println!(r#" | '__| | | / __| __| | | '_ \ / _` / __| "#);
println!(r#" | | | |_| \__ \ |_| | | | | | (_| \__ \ "#);
println!(r#" |_| \__,_|___/\__|_|_|_| |_|\__, |___/ "#);
println!(r#" |___/ "#);
println!("");
if None == matches.subcommand_name() {
println!("");
println!(r#" welcome to... "#);
println!(r#" _ _ _ "#);
println!(r#" _ __ _ _ ___| |_| (_)_ __ __ _ ___ "#);
println!(r#" | '__| | | / __| __| | | '_ \ / _` / __| "#);
println!(r#" | | | |_| \__ \ |_| | | | | | (_| \__ \ "#);
println!(r#" |_| \__,_|___/\__|_|_|_| |_|\__, |___/ "#);
println!(r#" |___/ "#);
println!("");
}
if let Some(matches) = matches.subcommand_matches("run") {
run(matches.clone());