Last Modified: 9/9/2021
Returns a String of the specified character at the specified length.
| Name | Type | Required | Description |
| Character | String | Yes | The charactor or symbol you want to make the String out of. |
| Length | Integer, Long, Constant | Yes | The amount of times you want to insert the character into the String. |
| Syntax: String$(<Character>, <Length>) |
|
b$ = String$("X",10) Print b$ |