public rpad(width as Int, fill as Char = ' ') as String:
Right pads this string to the target width.
A new padded string, or this string when it is already wide enough.
assert "Klyn".rpad(8, '.') == "Klyn...."