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