Java Lang Java by API

/**
 Output:
 bool is true
 
 * */
public class MainClass {
  public static void main(String args[]) throws Exception {
    System.out.printf("bool is %b\n", "a" );
  }
}