Fixed error with the way the string pool worked
This commit is contained in:
10
test/moreArrays.c0
Normal file
10
test/moreArrays.c0
Normal file
@@ -0,0 +1,10 @@
|
||||
#use <conio>
|
||||
|
||||
int main() {
|
||||
int[] A = alloc_array(int, 50);
|
||||
A[3] = 23;
|
||||
A[2] = 12;
|
||||
printint(A[3]);
|
||||
printint(A[2]);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user