From 6cc16edff0ee30bc4cc482724f3a3579ec65fa6d Mon Sep 17 00:00:00 2001 From: olivia Date: Wed, 14 Nov 2018 20:04:48 +0100 Subject: [PATCH] add a fancy ascii header --- src/main.rs | 7 +++++++ 1 file changed, 7 insertions(+) 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");