superlint/.automation/test/csharp/csharp_good_01.cs

13 lines
177 B
C#
Raw Normal View History

2020-08-25 15:05:42 -04:00
using System;
2020-08-25 14:07:44 -04:00
2020-08-25 15:05:42 -04:00
namespace HelloWorld
{
2020-08-25 15:52:52 -04:00
class Program
2020-08-25 15:05:42 -04:00
{
2020-08-25 15:52:52 -04:00
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
2020-08-25 15:05:42 -04:00
}
2020-08-25 14:07:44 -04:00
}