hacktoberfest-2018/code/TheByteStuff.cs

17 lines
307 B
C#
Raw Normal View History

2018-10-02 19:45:06 +00:00
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");
}
}
}