C-Sharp/hey.cs

21 lines
254 B
C#
Raw Normal View History

2021-07-08 03:31:41 +00:00
class Heyo
{
static void Main()
{
System.Console.WriteLine("Heyo! Hello world...");
}
}
or
using System;
internal static class Heyo
{
private static void Main()
{
Console.WriteLine("Heyo! Hello world...");
}
}