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