FILL(1,2)
PURPOSE
This function will return an A type field of a specific size and made up entirely of a specific character.
PARTS
1 f/c/e | Required - The size of the string to be returned. |
2 f/c/e | Required - The fill character to be used. This must be an A type field and only the first character of that field will be used. |
RETURN TYPE - A
EXAMPLE
define x type a size 10
x = FILL(sizeof(x,'d'),'*')
// x = '**********'