Integer class. This may come in handle for parsing integers (for operations on an...
[IRC.git] / Robust / src / Tests / IntegerTest.java
diff --git a/Robust/src/Tests/IntegerTest.java b/Robust/src/Tests/IntegerTest.java
new file mode 100644 (file)
index 0000000..2f3dda5
--- /dev/null
@@ -0,0 +1,11 @@
+public class IntegerTest {
+    public static void main(String[] str) {
+       Integer i=new Integer("312");
+       System.printString(i.toString());
+       System.printString("\n");
+       System.printInt(Integer.parseInt("-34"));
+       System.printString("\n");
+    }
+
+
+}