blob: 718eee2e8d1591d4f3bc6867693976c34baf25ca (
plain)
1
2
3
4
5
6
7
8
|
public class TestLib2 {
public static void main(String[] args) {
System.err.println("obtaining five, got "+new TestLib2().getFive());
}
public Integer getFive() { return new Integer(5); }
}
|