# Routing

Level: Beginner 🍃

# Basic routing

The code is an example of a basic route.

var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();

app.MapGet("/", () => "Hello World!");

app.Run();
1
2
3
4
5
6

# Route methods

# Route