var x = 1 System.print(x) // expect: 1 System.print(x+1) // expect: 2 var y System.print(y) // expect: null var z = 2 System.print(x+z) // expect: 3