21 lines
254 B
C#
21 lines
254 B
C#
|
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...");
|
||
|
}
|
||
|
}
|