1
0
mirror of synced 2026-01-21 15:02:16 -05:00
Files
core/samples/helloworld/Program.cs
2019-03-05 08:14:06 -08:00

13 lines
191 B
C#

using System;
namespace HelloWorldSample
{
public static class Program
{
public static void Main()
{
Console.WriteLine("Hello World!");
}
}
}