From 59845e610f2c90474f34079d27b5f1e07071ded4 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 6 Apr 2025 13:40:17 -0400 Subject: Deprecate `!!` print statement --- examples/http-server/http-server.tm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/http-server') diff --git a/examples/http-server/http-server.tm b/examples/http-server/http-server.tm index 56ba3683..1a09b601 100644 --- a/examples/http-server/http-server.tm +++ b/examples/http-server/http-server.tm @@ -138,7 +138,7 @@ func load_routes(directory:Path -> {Text=RouteEntry}): func main(directory:Path, port=Int32(8080)): say("Serving on port $port") routes := load_routes(directory) - !! Hosting: $routes + say(" Hosting: $routes") serve(port, func(request:HTTPRequest): if handler := routes[request.path]: -- cgit v1.2.3