6 lines
90 B
Vala
6 lines
90 B
Vala
int[] array = new int[10];
|
|
|
|
array[0] = 1;
|
|
array[1] = 3;
|
|
|
|
stdout.printf("%d\n", array[0]);
|