Skip to content

Instantly share code, notes, and snippets.

@iolo
Created September 11, 2012 08:42
Show Gist options
  • Save iolo/3696965 to your computer and use it in GitHub Desktop.
Save iolo/3696965 to your computer and use it in GitHub Desktop.
package controllers;
import play.*;
import play.mvc.*;
import views.html.*;
public class Application extends Controller {
public static Result index() {
return ok(index.render("Hello, World!"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment