app0.scala
author Christian Urban <urbanc@in.tum.de>
Tue, 13 Nov 2012 10:46:08 +0000
changeset 68 bc48791bb3a9
parent 6 4c40d4b2d01c
permissions -rw-r--r--
updated

package controllers
import play.api.mvc._

object Application extends Controller {

  // answering a GET request
  val index = Action { request =>
    Ok("Hello world!")
  }  
}