Also, hello world program in github readme is diff...
# ktor
a
Also, hello world program in github readme is different:
Copy code
fun main(args: Array<String>) {
    embeddedServer(Netty, 8080) {
        routing {
            get("/") {
                call.respondText("Hello, world!", ContentType.Text.Html)
            }
        }
    }.start(wait = true)
}
this seems to be a different way than most of the examples in ktor.io. Which is the recommended way?