mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-11-08 09:09:17 +01:00
make the default output a bit nicer
This commit is contained in:
parent
e03a98cbf6
commit
7fa2f87c8b
@ -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!
|
@ -32,6 +32,9 @@ fn main() {
|
||||
let ss = SyntaxSet::load_defaults_newlines();
|
||||
let ts = ThemeSet::load_defaults();
|
||||
|
||||
if None == matches.subcommand_name() {
|
||||
println!("");
|
||||
println!(r#" welcome to... "#);
|
||||
println!(r#" _ _ _ "#);
|
||||
println!(r#" _ __ _ _ ___| |_| (_)_ __ __ _ ___ "#);
|
||||
println!(r#" | '__| | | / __| __| | | '_ \ / _` / __| "#);
|
||||
@ -39,6 +42,7 @@ fn main() {
|
||||
println!(r#" |_| \__,_|___/\__|_|_|_| |_|\__, |___/ "#);
|
||||
println!(r#" |___/ "#);
|
||||
println!("");
|
||||
}
|
||||
|
||||
if let Some(matches) = matches.subcommand_matches("run") {
|
||||
run(matches.clone());
|
||||
|
Loading…
Reference in New Issue
Block a user