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

8 lines
91 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
class GoodByeApp : Application
{
void Main()
{
PrintLn("Hello world!");
}
}