I need to create an array in one of my index.scala.html. Later I want to use that array to store some values.
I want to achieve following index.scala.html
@import scala._
@myArray = @{ArrayList()};
and I am getting an error saying
not found value @myArray
If above problem is resolved I want to reuser @myArray to add String values. How I can do that ?
thanks