app0.scala
author Christian Urban <urbanc@in.tum.de>
Tue, 02 Oct 2012 13:57:26 +0100
changeset 18 ad7ef5a7a63c
parent 6 4c40d4b2d01c
permissions -rw-r--r--
tuned

package controllers
import play.api.mvc._

object Application extends Controller {

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