Files
2023-10-13 14:01:41 +00:00

10 lines
75 B
Plaintext

method foo() {
i = 3;
k = i;
i = k*4;
}
method bar() {
j = i*2;
}