blob: 6491710ebf859f3ef38b99d6c9b55b68511ce2ef [file] [log] [blame]
public class Foo
{
public static void main( String[] args )
{
log( "integer", new Integer( 5 ) );
log( "float", new Float( 5.5f ) );
}
private static void <caret>log(String title, Object value) {
System.out.println( title + ":" + value );
}
}