=> { @printf("%s@repeatString(" %s", args.size())@\n", Sous_Ligne(r-> @sField@)@ foreach i in args { @, @i@@ } @); repeatString Returns the concatenation of a string repeated a few times. 21.163 repeatString function repeatString(text : string, occurrences : int) : string Parameter Type Description text string the string to repeat occurrences int number of times the string must be repeated Returns the result of repeating the sequence of characters passed to argument text a number of times given by the parameter occurrences. Example: traceLine("repeatString('Hungry!', 3') = '" + repeatString("Hungry!", 3) + "'"); Output: repeatString('Hungry!', 3') = 'Hungry!Hungry!Hungry!' See also: