This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Tests / Test.java
diff --git a/Robust/src/Tests/Test.java b/Robust/src/Tests/Test.java
deleted file mode 100644 (file)
index 6f4f334..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-public class Test {
-    public Test() {
-      ;
-    }
-    int a;
-    public static void main(String str[]) {
-       Test t=new Test();
-       for(int i=3;i<10000;i++) {
-               boolean flagx=true;
-               for(int j=2;flagx&&j<i;j++) {
-                       if ((i%j)==0)
-                            flagx=false;
-               }
-               if (flagx) {
-                       System.printInt(i);
-                       System.printString("\n");
-               }
-       }
-    }
-}