Files
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

9 lines
207 B
Plaintext

public class Foo
{
public static void main( String[] args )
{
System.out.println( "integer" + ":" + new Integer( 5 ));
System.out.println( "float" + ":" + new Float( 5.5f ));
}
}