Hello World Code Example

This commit is contained in:
Brian Burress
2018-10-02 15:45:06 -04:00
parent 02b44ddcf7
commit 1d21b314f2
2 changed files with 420 additions and 0 deletions

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