REPEAT intrinsic function
Standard: F77 F90 F95 F2003 F2008
  Example Program
<Syntax>

REPEAT ( STRING, NCOPIES )

STRING : scalar Character, any kind;
NCOPIES : scalar Integer, NCOPIES≥0;

Result : scalar Character(LEN=NCOPIES*LEN(STRING), KIND=KIND(STRING)).

<Semantics>

The result is the concatenation of NCOPIES copies of STRING.

<Related>
CHARACTER type, Concatenation (//) operator.