Created
October 23, 2019 13:33
-
-
Save digimon1740/00a4f0a87cd7d8b3e6cf9144970aad72 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void main(String[] args) { | |
var app = Javalin.create().start(7000); | |
app.get("/", ctx -> ctx.result("Hello World")); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment