Test cases
[IRC.git] / Robust / src / Tests / Array.java
index 6fb794785c57e8409bce8ddc01c40f1e647ec3e9..7a272d0dd34c6fbf52d75fd1abcf66cf83a24173 100644 (file)
@@ -5,6 +5,8 @@ public class Array {
        int i=2;
        a[i]=4;
        System.printInt(a[2]);
+       System.printString("\n");
        System.printInt(a.length);
+       System.printString("\n");
     }
 }