Skip to content

Instantly share code, notes, and snippets.

@iolo
Created September 11, 2012 08:42
Show Gist options
  • Save iolo/3696968 to your computer and use it in GitHub Desktop.
Save iolo/3696968 to your computer and use it in GitHub Desktop.
package controllers
import play.api._
import play.api.mvc._
object Application extends Controller {
def index = Action {
Ok(views.html.index("Hello, World!"))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment