1 2 3 4 5 6 7 8 9
{ var a = "first" System.print(a) // expect: first } { var a = "second" System.print(a) // expect: second }