app0.scala
author Christian Urban <urbanc@in.tum.de>
Tue, 16 Oct 2012 12:16:43 +0100
changeset 46 5b772ec2ec39
parent 6 4c40d4b2d01c
permissions -rw-r--r--
added

package controllers
import play.api.mvc._

object Application extends Controller {

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