14 lines
249 B
C#
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!"));
|
|
}
|
|
}
|
|
}
|