author | Christian Urban <christian dot urban at kcl dot ac dot uk> |
Mon, 21 Oct 2013 23:57:41 +0100 | |
changeset 118 | a42bbdfe5dd9 |
parent 105 | 40c51038c9e4 |
child 161 | a0aebea668f9 |
permissions | -rw-r--r-- |
package controllers import play.api.mvc._ // hello world program: // just answer the GET request with a string object Application extends Controller { // answering a GET request val index = Action { request => Ok("<H1>Hello world!</H1>").as(HTML) } } /* * HTML can be returned using * * Ok("<H1>Hello world!</H1>").as(HTML) * */