String indent(int depth) { String out = ""; int k = 0; while (k < depth) { out = out + " "; k = k + 1; } return out; }