debugPrintln method

void debugPrintln(
  1. Object o
)

Implementation

void debugPrintln(Object o) {
  print(o);
  print("\n");
}