Matt
greetRoute()
greet(nameFromPath: String)
dave
fun greet(nameFromPath: String): HttpHandler = filter.then { request: Request -> val age = ageQuery(request) val sentMessage = stringBody(request) Response(OK).with(stringBody of "hello $nameFromPath you are $age. You sent $sentMessage") } @
A modern programming language that makes developers happier.