13 lines
163 B
Text
13 lines
163 B
Text
|
/* Test Arrays as Fields */
|
||
|
|
||
|
class Main {
|
||
|
int[] x;
|
||
|
void main() {
|
||
|
int i;
|
||
|
x = new int[3];
|
||
|
x[0] = 3;
|
||
|
x[1] = 4;
|
||
|
x[2] = 5;
|
||
|
}
|
||
|
}
|