package controllersimport play.api.mvc._// hello world program // just answers the GET request with a stringobject 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) * */