RosettaCodeData/Task/Hello-world-Text/C-sharp/hello-world-text-1.cs
2023-07-01 13:44:08 -04:00

10 lines
169 B
C#

namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
System.Console.WriteLine("Hello world!");
}
}
}