added test script
[IRC.git] / Robust / src / ClassLibrary / System.java
index 7a03cc2e9627b52724b805e80e66efa38d1be6b6..23e5295ea1420b33b66f7094ea3a5df238ddfa21 100644 (file)
@@ -1,4 +1,9 @@
 public class System {
-    public static native void printInt(int x);
+    /*    public static void printInt(int x) {
+       String s=String.valueOf(x);
+       printString(s);
+       }*/
+
     public static native void printString(String s);
+    public static native void printInt(int x);
 }