projects
/
IRC.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
change
[IRC.git]
/
Robust
/
src
/
Tests
/
IntegerTest.java
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
}