using System.Threading.Tasks;
public static void Main(string[] args)
Console.WriteLine("Hello World!");
Console.WriteLine("An exception happened");
Console.WriteLine("This is the next statement");
return Task.CompletedTask;
static async Task DoThing()
Console.WriteLine("DoThing() started");
Console.WriteLine("DoThing() ended");
throw new Exception("AHHH");