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