ビュー パッケージにシンプルな index.scala.html を記述します。
@import controllers.Application.AuthenticatedRequest
@(posts: Iterator[Post], message: String = "" )(implicit request: AuthenticatedRequest)
.....
エラーは次のとおりです。
[error] F:\Kepler\blog\app\views\posts\index.scala.html:2: ')' expected but '='
found.
[error] @(posts: Iterator[Post], message:String = "")(implicit request: Authenti
catedRequest)
[error] ^
メッセージのデフォルト値を「」に設定するのが正しい方法だと思います。ここで「=」ではなく「)」が期待される理由は誰でも知っています