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.
|
To get started, run `rustlings verify` in order to get the first exercise.
|
||||||
Make sure to have your editor open!
|
Make sure to have your editor open!
|
18
src/main.rs
18
src/main.rs
@ -32,13 +32,17 @@ fn main() {
|
|||||||
let ss = SyntaxSet::load_defaults_newlines();
|
let ss = SyntaxSet::load_defaults_newlines();
|
||||||
let ts = ThemeSet::load_defaults();
|
let ts = ThemeSet::load_defaults();
|
||||||
|
|
||||||
println!(r#" _ _ _ "#);
|
if None == matches.subcommand_name() {
|
||||||
println!(r#" _ __ _ _ ___| |_| (_)_ __ __ _ ___ "#);
|
println!("");
|
||||||
println!(r#" | '__| | | / __| __| | | '_ \ / _` / __| "#);
|
println!(r#" welcome to... "#);
|
||||||
println!(r#" | | | |_| \__ \ |_| | | | | | (_| \__ \ "#);
|
println!(r#" _ _ _ "#);
|
||||||
println!(r#" |_| \__,_|___/\__|_|_|_| |_|\__, |___/ "#);
|
println!(r#" _ __ _ _ ___| |_| (_)_ __ __ _ ___ "#);
|
||||||
println!(r#" |___/ "#);
|
println!(r#" | '__| | | / __| __| | | '_ \ / _` / __| "#);
|
||||||
println!("");
|
println!(r#" | | | |_| \__ \ |_| | | | | | (_| \__ \ "#);
|
||||||
|
println!(r#" |_| \__,_|___/\__|_|_|_| |_|\__, |___/ "#);
|
||||||
|
println!(r#" |___/ "#);
|
||||||
|
println!("");
|
||||||
|
}
|
||||||
|
|
||||||
if let Some(matches) = matches.subcommand_matches("run") {
|
if let Some(matches) = matches.subcommand_matches("run") {
|
||||||
run(matches.clone());
|
run(matches.clone());
|
||||||
|
Loading…
Reference in New Issue
Block a user