From 26d2189162fe373892072db87177bb06af5313be Mon Sep 17 00:00:00 2001 From: Chrome Artiste <33493569+Kuromu@users.noreply.github.com> Date: Tue, 11 Dec 2018 13:04:56 -0600 Subject: [PATCH] include using statements (for increased readability, obviously.) --- e.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/e.cs b/e.cs index 7d83984..6e0b5a1 100644 --- a/e.cs +++ b/e.cs @@ -1,16 +1,17 @@ -using System; +using Eeeeeee = System.Console; +using eeee = System.Boolean; namespace e { class E { - const bool e = true; + const eeee e = true; - static void Main(string[] args) + static void Main(string[] eeee) { while (e) { - Console.Write('e'); + Eeeeeee.Write('e'); } } }