fixr Method
Purpose:
Returns a string right justified.
Syntax:
.fixr(n)
Comments:
where n is the length of the field.
Example:
abc = "12345"
p abc.fixr(9) + "ab"
12345ab