RosettaCodeData/Task/Hello-world-Text/Beef/hello-world-text.beef

11 lines
137 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Using System;
namespace HelloWorld {
class Program
{
static void Main()
{
Console.Writeln("Hello World!");
}
}
}