I just started playing with the game and scala I found that game 2.0 is not something one should start with.
It seems that the game lacks 2.0, and most of the lessons for playing 1.x. For example, I lost time with the eclipify game to find in the error archive that such βcomfortβ was not implemented in game 2.0. Therefore, I would advise you to learn scala with game 1.
And in your step in the tutorial (tutorial for game 1, I don't know, for game 2) you have to change:
controllers.Application.index to controllers.Application.sayHello
add to contollers.scala
def sayHello = html.sayHello(params.get("myName"))
Add this file helloworld/app/views/Application/sayHello.scala.html:
@(name:String) @main(title = "Hello") { <h1>Hello @(name ?: "Guest")!</h1> <a href="@action(controllers.Application.index)">Back to form</a> }
source share