static S repeatString(S s, int n) { new StringBuilder buf; for (int i = 0; i < n; i++) buf.append(s); ret str(buf); }