This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 public class IntegerTest {
2     public static void main(String[] str) {
3         Integer i=new Integer("312");
4         System.printString(i.toString());
5         System.printString("\n");
6         System.printInt(Integer.parseInt("-34"));
7         System.printString("\n");
8     }
9
10
11 }