summaryrefslogblamecommitdiff
path: root/test/files/run/multi-array.scala
blob: 42f64751fd87d6c174f5c2018a7fa4dbabb3d7cc (plain) (tree)
1
2
3
4
5
6
7
8
9






                                                     
                                                                                            
                           


                                      
                                    
 
object Test extends Application {
  val a = Array(1, 2, 3)
  println(a.deepToString)

  val aaiIncomplete = new Array[Array[Array[Int]]](3)
  println(aaiIncomplete(0))

  val aaiComplete: Array[Array[Int]] = Array.ofDim[Int](3, 3) // new Array[Array[Int]](3, 3)
  println(aaiComplete.deep)
  for (i <- 0 until 3; j <- 0 until 3)
    aaiComplete(i)(j) = i + j
  println(aaiComplete.deepToString)
  assert(aaiComplete.last.last == 4)
}