diff --git a/Program.cs b/Program.cs index cc4940a..b1d20c6 100644 --- a/Program.cs +++ b/Program.cs @@ -26,7 +26,7 @@ bool printSteps = false; Console.WriteLine(); Console.WriteLine("Show each step? (Y/N) "); -if(Console.ReadLine()?.Trim() == "Y") { +if(Console.ReadLine()?.Trim().ToUpperInvariant() == "Y") { printSteps = true; }