prt static method

void prt(
  1. Object e
)

Implementation

static void prt(Object e){
  if (kDebugMode) {
    print(e);
  }
}