Here is a little method you can add to Sequence to allow you to right justify a field in textual output (similar to the printf %9s width specifier):
Sequence pad := method(w, s:=self; while(s size < w, s=" ".. s); s )
Io> writeln("Answer is:", 9 asString pad(4), "!")
==> Answer is: 9!
