Own-Programming-Language-Tu.../test/resources/other/scope.own

10 lines
137 B
Plaintext

def testScope() {
x = 5
def func() {
assertEquals(5, x)
x += 10
assertEquals(15, x)
}
func();
assertEquals(15, x)
}