RosettaCodeData/Task/Hello-world-Text/EC/hello-world-text.ec

8 lines
91 B
Plaintext

class GoodByeApp : Application
{
void Main()
{
PrintLn("Hello world!");
}
}