8 lines
93 B
Plaintext
Raw Normal View History

class HelloWorldApp : Application
{
void Main()
{
PrintLn("Hello World");
}
}