Change test-resources path to src/test/resources
This commit is contained in:
9
compiler/src/test/resources/examples/functions/scopes
Normal file
9
compiler/src/test/resources/examples/functions/scopes
Normal file
@ -0,0 +1,9 @@
|
||||
int i;
|
||||
i = 42;
|
||||
int randomNumber() {
|
||||
int i;
|
||||
i = 4;
|
||||
return i;
|
||||
}
|
||||
println(randomNumber());
|
||||
println(i);
|
Reference in New Issue
Block a user