app0.scala
author Christian Urban <urbanc@in.tum.de>
Mon, 24 Sep 2012 20:51:17 +0100
changeset 5 1280309e6bfc
child 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!")
  }  
  
}