Repeat a string: Difference between revisions

Content added Content deleted
(Added Oz solution.)
(added PowerShell)
Line 192: Line 192:
=={{header|Python}}==
=={{header|Python}}==
<lang python>"ha" * 5 # ==> "hahahahaha"</lang>
<lang python>"ha" * 5 # ==> "hahahahaha"</lang>

=={{header|PowerShell}}==
<lang powershell>"ha" * 5 # ==> "hahahahaha"</lang>


=={{header|Ruby}}==
=={{header|Ruby}}==