Example #1
0
  public String toString() {
    if (next == null) {

      return " " + inhalt;

    } else {

      return inhalt + " " + next.toString();
    }
  }