namespace Server.HTML { public class Spin { private static string html = @" Roulette

Spin the Roulette!

"; public static async Task Main(HttpContext context) { await context.Response.WriteAsync(html); } } }