The following app will start an HTTP server listening on port 8080 that returns Hello world on GET /hello/world
import akka.actor.ActorSystem
import akka.http.scaladsl.Http
import akka.http.scaladsl.server.Directives._
import akka.http.scaladsl.server._
import akka.stream.ActorMaterializer
i...