fun helloWorld()

in functions/src/main/kotlin/HttpExample.kt [5:9]


    fun helloWorld(req: HttpServletRequest, resp: HttpServletResponse) {
        with(resp.writer) {
            println("Hello World!")
        }
    }