Creates a String of specified length filled with a specific character.
(FillString( {stringCharacter, integerLength} ))
The FillString function returns a String of Length integerLength filled with character stringCharacter.
String sChar
Integer iLength
Move "t" to sChar
Move 10 to iLength
Move (FillString(sParam)) to sParam