progs/scala/Application0.scala
changeset 197 9c968d0de9a0
parent 161 a0aebea668f9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/progs/scala/Application0.scala	Sat Oct 04 12:46:04 2014 +0100
@@ -0,0 +1,24 @@
+package controllers
+
+import play.api._
+import play.api.mvc._
+
+// hello world program: 
+// just answer the GET request with a string
+
+object Application extends Controller {
+
+  // answering a GET request
+  def index = Action {
+    Ok(views.html.index("222Your new application is ready."))
+    //Ok("Hello World")
+  }  
+  
+}
+
+/*
+ * HTML can be returned using
+ *
+ * Ok("<H1>Hello world!</H1>").as(HTML)
+ *
+ */