String(
     int:count,
     string:char
)
string

Arguments

count

Number of characters.

char

Character to copy.

Return value

String of characters.

Description

Returns a string consisting of count copies of the character char.

Example:

Output(String(5, "A"));
--> AAAAA

See also: Space