8 lines
116 B
C#
Raw Normal View History

class X {
public static int Main (string [] args)
{
System.Console.WriteLine ("Hello, World");
return 0;
}
}