RosettaCodeData/Task/Hello-world-Text/C-sharp/hello-world-text-1.cs

11 lines
169 B
C#
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
System.Console.WriteLine("Hello world!");
}
}
}