static S padLeft(S s, char c, int n) { ret rep(c, n-l(s)) + s; } // default to space static S padLeft(S s, int n) { ret padLeft(s, ' ', n); }