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