progs/app0.scala
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Tue, 23 Sep 2014 17:05:14 +0100
changeset 172 aa7ddfee35c9
parent 93 82ac034dcc9d
permissions -rw-r--r--
fixed bug

package controllers
import play.api.mvc._

object Application extends Controller {

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