This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Tests / Array.java
diff --git a/Robust/src/Tests/Array.java b/Robust/src/Tests/Array.java
deleted file mode 100644 (file)
index 28b32f3..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-public class Array {
-    int a;
-    public static void main(String[] st) {
-       int a[]=new int[10];
-       int i=2;
-       a[i]=4;
-       System.printInt(a[2]);
-       System.printString("\n");
-       System.printInt(a.length);
-       System.printString("\n");
-    }
-}