Jump to content

Repeat a string: Difference between revisions

Added Easylang
(→‎Insitux: inclusion)
(Added Easylang)
Line 830:
=={{header|E}}==
<syntaxhighlight lang="e">"ha" * 5</syntaxhighlight>
 
=={{header|EasyLang}}==
<syntaxhighlight lang=easylang>
func$ rep s$ n .
for i to n
r$ &= s$
.
return r$
.
print rep "ha" 5
</syntaxhighlight>
 
=={{header|ECL}}==
2,058

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.