This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Tests / Array2.java
diff --git a/Robust/src/Tests/Array2.java b/Robust/src/Tests/Array2.java
deleted file mode 100644 (file)
index f7b69d4..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-public class Array2 {
-    int a;
-    public static void main(String str[]) {
-       int a[][]=new int[10][20];
-       for(int i=0;i<10;i++) {
-           for(int j=0;j<20;j++) {
-               a[i][j]=i*100+j;
-           }
-       }
-
-       for(int i=0;i<10;i++) {
-           for(int j=0;j<20;j++) {
-               System.printInt(a[i][j]);
-               System.printString(" ");
-           }
-           System.printString("\n");
-       }
-    }
-}