package de.fd.fh; import static spark.Spark.*; public class ServerApp { public static void main(String[] args) { get("/hello", (req, res) -> "Hello World"); } }