الملفات

7 أسطر
150 B
C#

var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapGet("/", () => "Hello PowerShell + DevOps Summit!");
app.Run();