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

8 lines
91 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
class GoodByeApp : Application
{
void Main()
{
PrintLn("Hello world!");
}
}