Contact: aviboots(AT)netvision.net.il
41,604 questions
54,252 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 */