progs/app0.scala
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Tue, 23 Sep 2014 10:24:38 +0100
changeset 167 d8657ff8cca1
parent 93 82ac034dcc9d
permissions -rw-r--r--
typos

package controllers
import play.api.mvc._

object Application extends Controller {

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