1
0
mirror of https://github.com/c0de-archive/hacktoberfest-2018.git synced 2025-01-05 16:42:49 +00:00
hacktoberfest-2018/code/TheByteStuff.cs
2018-10-02 15:45:06 -04:00

17 lines
307 B
C#

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