first commit
This commit is contained in:
commit
063194f8be
349 changed files with 36508 additions and 0 deletions
16
tester/testsuite/extensions/arrays1/array001.jl
Normal file
16
tester/testsuite/extensions/arrays1/array001.jl
Normal file
|
@ -0,0 +1,16 @@
|
|||
int main() {
|
||||
|
||||
int[] a = new int[10];
|
||||
int j=0;
|
||||
while (j<a.length) {
|
||||
a[j] = j;
|
||||
j++;
|
||||
}
|
||||
|
||||
for (int x : a)
|
||||
printInt(x);
|
||||
|
||||
int x = 45;
|
||||
printInt(x);
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue