RosettaCodeData/Task/Hello-world-Text/EC/hello-world-text.ec
2023-07-01 13:44:08 -04:00

7 lines
91 B
Text

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