hacktoberfest-2018/code/HelloWOrld.cs

11 lines
207 B
C#
Raw Permalink Normal View History

2018-10-07 05:38:12 +00:00
// Hello World! program C#
namespace HelloWorld
{
class Hello {
static void Main(string[] args)
{
System.Console.WriteLine("Hello HacktoberFest!");
}
}
}