RosettaCodeData/Task/Repeat-a-string/ECL/repeat-a-string-1.ecl

6 lines
163 B
Prolog
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
IMPORT STD; //Imports the Standard Library
STRING MyBaseString := 'abc';
RepeatedString := STD.Str.Repeat(MyBaseString,3);
RepeatedString; //returns 'abcabcabc'