Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 answers
573 users
object MyClass { def main(args: Array[String]): Unit = { var x = 100; var y = 55; if (x == 100) { if (y == 55) { println("x = 100 and y = 55"); } } } } /* run: x = 100 and y = 55 */