Repeat a string: Difference between revisions

Content added Content deleted
No edit summary
Line 100: Line 100:


{{out}}
{{out}}

<pre>
<pre>
hahahahaha
hahahahaha
</pre>
</pre>

=={{header|Action!}}==
<lang Action!>Proc Main()
byte REPEAT

REPEAT=5
Do
Print("ha")
REPEAT==-1
Until REPEAT=0
Do

Return</lang>
{{out}}
<pre>hahahahaha</pre>


=={{header|ActionScript}}==
=={{header|ActionScript}}==