Skip to content

Instantly share code, notes, and snippets.

@talkingdotnet
Created May 26, 2022 17:12
Show Gist options
  • Save talkingdotnet/1bc445ef7605e33362b0a2657891cf27 to your computer and use it in GitHub Desktop.
Save talkingdotnet/1bc445ef7605e33362b0a2657891cf27 to your computer and use it in GitHub Desktop.
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapGet("/", () => "Hello World!");
app.Run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment