Contact: aviboots(AT)netvision.net.il
39,940 questions
51,877 answers
573 users
object MyClass { def main(args: Array[String]): Unit = { val t = (4, 9, 3.14, 8, 7) val sum = t._1 + t._2 + t._3 + t._4 + t._5 println(sum) } } /* run: 31.14 */