From 2a6dc209c8efc96ae84e31f45f89abecf0b74313 Mon Sep 17 00:00:00 2001 From: Piotr Czajkowski Date: Sat, 1 Jan 2022 11:17:05 +0100 Subject: [PATCH] Added Instructions --- 20_Buzzword/csharp/Program.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/20_Buzzword/csharp/Program.cs b/20_Buzzword/csharp/Program.cs index 5e5ea8ec..f8c04586 100644 --- a/20_Buzzword/csharp/Program.cs +++ b/20_Buzzword/csharp/Program.cs @@ -12,9 +12,22 @@ namespace Buzzword Console.WriteLine(); Console.WriteLine(); } + + static void Instructions() + { + Console.WriteLine("This program prints highly acceptable phrases in\n" + + "'Educator-speak'that you can work into reports\n" + + "and speeches. Whenever a question mark is printed,\n" + + "type a 'Y' for another phrase or 'N' to quit."); + Console.WriteLine(); + Console.WriteLine(); + Console.WriteLine("Here's the first phrase:"); + } + static void Main(string[] args) { Header(); + Instructions(); } } }