Just another update
This commit is contained in:
parent
a25938f123
commit
00a190b0a6
6591 changed files with 94363 additions and 23227 deletions
|
|
@ -1 +1,7 @@
|
|||
StrUtils.DupeString
|
||||
function RepeatStr(const s: string; i: Cardinal): string;
|
||||
begin
|
||||
if i = 0 then
|
||||
result := ''
|
||||
else
|
||||
result := s + RepeatStr(s, i-1)
|
||||
end;
|
||||
|
|
|
|||
1
Task/Repeat-a-string/Delphi/repeat-a-string-4.delphi
Normal file
1
Task/Repeat-a-string/Delphi/repeat-a-string-4.delphi
Normal file
|
|
@ -0,0 +1 @@
|
|||
StrUtils.DupeString
|
||||
Loading…
Add table
Add a link
Reference in a new issue