append0 method

String append0()

Implementation

String append0() {
  if (length == 1) {
    return "0$this";
  } else {
    return this;
  }
}