RosettaCodeData/Task/Arrays/Scala/arrays-2.scala

4 lines
138 B
Scala
Raw Permalink Normal View History

2013-04-09 00:46:50 -07:00
val a = new collection.mutable.ArrayBuffer[Int]
a += 5 // Append value 5 to the end of the list
a(0) = 6 // Assign value 6 to element 0