summaryrefslogblamecommitdiff
path: root/test/files/run/t107.scala
blob: ab1b289882a627de156dd4a1e2a935e268170f8c (plain) (tree)
1
2
3
4
5
6
7
8







                                                   
object Test {
  def main(args : Array[String]) : Unit = {
    var hash : Long = 0
    val bytes = Array(1.toByte, 2.toByte, 3.toByte)
    hash += bytes(0)
    Console.println(hash)
  }
}