Repeat a string: Difference between revisions

Content added Content deleted
(Added Quackery)
Line 1,955: Line 1,955:
the other way also works:
the other way also works:
<lang python>5 * "ha" # ==> "hahahahaha"</lang>
<lang python>5 * "ha" # ==> "hahahahaha"</lang>

=={{header|Quackery}}==
<lang Quackery>$ "ha" 5 of echo$</lang>
'''Output:'''
<pre>hahahahaha</pre>


=={{header|R}}==
=={{header|R}}==