/**
  * Display the specified object in the console using the default color which is Black
  *
  * @param o the object to display
  */
 public static void write(Object o) {
   internalWrite(o, ColorValue.BLACK, false);
 }
 /**
  * Display the specified object in the console using the default color which is Black, and go to
  * the next line
  *
  * @param o the object to display
  */
 public static void writeln(Object o) {
   internalWrite(o, ColorValue.BLACK, true);
 }
 /**
  * Display the specified object in the console with the specified color, and go to the next line
  *
  * @param o the object to display
  * @param colorValue the color to use
  */
 public static void writeln(Object o, ColorValue colorValue) {
   internalWrite(o, colorValue, true);
 }