include using statements

(for increased readability, obviously.)
This commit is contained in:
Chrome Artiste 2018-12-11 13:04:56 -06:00 committed by GitHub
parent fb479d3646
commit 26d2189162
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

9
e.cs
View File

@ -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');
}
}
}