diff options
| author | olivia <olivia@fastmail.com> | 2018-11-14 20:04:48 +0100 |
|---|---|---|
| committer | olivia <olivia@fastmail.com> | 2018-11-14 20:04:48 +0100 |
| commit | 6cc16edff0ee30bc4cc482724f3a3579ec65fa6d (patch) | |
| tree | c30390bc8323c9c8943f680918eb83550f8ea894 /src | |
| parent | 2216b3a3ab2938a968ad89362c673609ee4e68eb (diff) | |
add a fancy ascii header
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 509e055..af0860d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,6 +16,13 @@ fn main() { .about("Test") .subcommand(SubCommand::with_name("verify").alias("v")) .get_matches(); + + println!(r#" _ _ _ "#); + println!(r#" _ __ _ _ ___| |_| (_)_ __ __ _ ___ "#); + println!(r#" | '__| | | / __| __| | | '_ \ / _` / __| "#); + println!(r#" | | | |_| \__ \ |_| | | | | | (_| \__ \ "#); + println!(r#" |_| \__,_|___/\__|_|_|_| |_|\__, |___/ "#); + println!(r#" |___/ "#); if let Some(_) = matches.subcommand_matches("verify") { compile_only("exercises/ex1.rs"); |
