Added tests for array/struct impl, but they in general require printing

to screen
This commit is contained in:
Mitchell Plamann
2015-04-06 01:21:41 -04:00
parent 447b40710e
commit 30e983e656
11 changed files with 150 additions and 0 deletions

12
test/arrays.c0 Normal file
View File

@@ -0,0 +1,12 @@
#use <conio>
int main() {
int[] A = alloc_array(int, -2);
A[3] = 0;
A[3] = 1;
A[3] = 2;
A[3] = 3;
printint(A[3]);
return 0;
}