Skip to content

Instantly share code, notes, and snippets.

@mikaelo
Forked from IEvangelist/smallest.md
Created February 13, 2018 20:29
Show Gist options
  • Save mikaelo/b4dc5011f4e87a0ec9ab0f939dc25ed6 to your computer and use it in GitHub Desktop.
Save mikaelo/b4dc5011f4e87a0ec9ab0f939dc25ed6 to your computer and use it in GitHub Desktop.
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;

public class Program
{
    static void Main() => WebHost.Start(ctx => ctx.Response.WriteAsync("Hello World!")).WaitForShutdown();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment