Merge pull request #77 from TheByteStuff/TheByteStuffCode

Hello World Code Example
This commit is contained in:
Luke Oliff 2018-10-02 20:39:48 -07:00 committed by GitHub
commit 84a9910468
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
code/TheByteStuff.cs Normal file
View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HelloWorld
{
class TheByteStuff
{
static void Main(string[] args)
{
System.Console.WriteLine("Hello Hacktoberfest 2018");
}
}
}