using System;
using System.Threading.Tasks;
public class Program
{
public static async Task Main()
Goer go = new Goer();
try
Task ted = go.Go();
}
catch (Exception e)
// seeing as the gooer throws... we should see this in the console.
Console.WriteLine("EX!");
public class Goer {
public async Task<string> Go()
Console.WriteLine("going");
throw new Exception();
return "wooo";