lint/test/linters/csharp/csharp_good_01.cs

13 lines
153 B
C#
Raw Normal View History

2020-08-25 14:05:42 -05:00
using System;
2020-08-25 13:07:44 -05:00
2020-08-25 14:05:42 -05:00
namespace HelloWorld
{
2020-11-06 21:56:52 +01:00
class Program
{
2020-11-06 22:13:57 +01:00
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
2020-11-06 21:56:52 +01:00
}
2020-08-25 13:07:44 -05:00
}