1
0

9 lines
101 B
Plaintext

int i;
i = 42;
int randomNumber() {
int i;
i = 4;
return i;
}
println(randomNumber());
println(i);