mirror of
https://github.com/c0de-archive/hacktoberfest-2018.git
synced 2024-11-01 12:17:47 +00:00
17 lines
307 B
C#
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");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|