Attic/programs/Application0.scala
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Sun, 05 Oct 2014 18:20:31 +0100
changeset 204 8fe0dc898c73
parent 198 2ce98ee39990
permissions -rw-r--r--
added example1

package controllers

import play.api.mvc._

// hello world program 
// just answers the GET request with a string

object Application extends Controller {

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

/*
 * HTML can be returned using
 *
 * OK("<H1>Hello world!</H1>").as(HTML)
 *
 */