start of new file
[IRC.git] / Robust / src / Tests / Array.java
1 public class Array {
2     int a;
3     public static void main(String[] st) {
4         int a[]=new int[10];
5         int i=2;
6         a[i]=4;
7         System.printInt(a[2]);
8         System.printString("\n");
9         System.printInt(a.length);
10         System.printString("\n");
11     }
12 }