0
var locations: List[Location] = List[Location]()
for (x <- 0 to 10; y <- 0 to 10) {
println("x: " + x + " y: " + y)
locations ::: List(Location(x, y))
println(locations)
}
上記のコードは、いくつかのリストを連結することになっています。しかし、結果は空のリストです。どうして?forループ内のリストに要素を追加する