From 62d6dec17a39d84558433406964b02486a5529b9 Mon Sep 17 00:00:00 2001 From: Nate G Date: Sun, 8 Oct 2017 20:24:05 -0700 Subject: [PATCH] Update Program.cs I made the console text colour red, just gives it more pizazz lol --- ConsoleApplication2/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ConsoleApplication2/Program.cs b/ConsoleApplication2/Program.cs index 637aabd..067b6a8 100644 --- a/ConsoleApplication2/Program.cs +++ b/ConsoleApplication2/Program.cs @@ -10,6 +10,7 @@ class Program { static void Main(string[] args) { + Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine("Test af Git Branch"); } }