5 lines
163 B
Prolog
5 lines
163 B
Prolog
IMPORT STD; //Imports the Standard Library
|
|
|
|
STRING MyBaseString := 'abc';
|
|
RepeatedString := STD.Str.Repeat(MyBaseString,3);
|
|
RepeatedString; //returns 'abcabcabc'
|