1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
open System open Microsoft.AspNetCore.Builder open Microsoft.Extensions.Hosting [<EntryPoint>] let main args = let builder = WebApplication.CreateBuilder(args) let app = builder.Build() app.MapGet("/", Func<string>(fun () -> "Hello World!")) |> ignore app.Run() 0 // Exit code