1
0
mirror of synced 2026-01-19 09:00:27 -05:00
Files
core/samples/helloworldasync/Program.cs
2019-03-05 08:14:06 -08:00

14 lines
249 B
C#

using System;
using System.Threading.Tasks;
namespace HelloWorldSample
{
public static class Program
{
public static async Task Main()
{
await Task.Run(() => Console.WriteLine("Hello World!"));
}
}
}