programs/Application0.scala
changeset 198 2ce98ee39990
parent 197 9c968d0de9a0
child 199 20af800ce736
--- a/programs/Application0.scala	Sat Oct 04 12:46:04 2014 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-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)
- *
- */