From 93fdf644aa1d042c0f09a36592f77e1e2929d2c6 Mon Sep 17 00:00:00 2001 From: AnthonyMichaelTDM <68485672+AnthonyMichaelTDM@users.noreply.github.com> Date: Wed, 9 Mar 2022 13:22:34 -0800 Subject: [PATCH] added welcome message --- 00_Utilities/mardown_todo_rust/src/main.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/00_Utilities/mardown_todo_rust/src/main.rs b/00_Utilities/mardown_todo_rust/src/main.rs index 9b461d24..005368df 100644 --- a/00_Utilities/mardown_todo_rust/src/main.rs +++ b/00_Utilities/mardown_todo_rust/src/main.rs @@ -31,6 +31,15 @@ fn main() { let mut root_folders:Vec; let mut output_string: String = String::new(); let format_game_first: bool; + + //print welcome message + println!(" + Markdown TODO list maker + by Anthony Rubick for the basic-computer-games repo + + + "); + //ask user how they want the todo list formatted format_game_first = get_yn_from_user("\n\t---====FORMATS====---\ngame first:\n\tGame\n\t\tLanguage ✅/⬜️\n\nlang first:\n\tLanguage\n\t\tGame ✅/⬜️\n\nmake todo list using the game first format? (y/n)");