Skip to content

Instantly share code, notes, and snippets.

@ane
Created November 28, 2014 07:53
Show Gist options
  • Save ane/cc0f79a62edc65537957 to your computer and use it in GitHub Desktop.
Save ane/cc0f79a62edc65537957 to your computer and use it in GitHub Desktop.
import static spark.Spark.*;
public class HelloWorld {
public static void main(String[] args) {
get("/hello", (req, res) -> "Hello World");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment