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

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");
}
}
}