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

10 lines
137 B
Text

Using System;
namespace HelloWorld {
class Program
{
static void Main()
{
Console.Writeln("Hello World!");
}
}
}