RosettaCodeData/Task/Repeat-a-string/Oz/repeat-a-string.oz

11 lines
159 B
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
declare
fun {Repeat Xs N}
if N > 0 then
{Append Xs {Repeat Xs N-1}}
else
nil
end
end
in
{System.showInfo {Repeat "Ha" 5}}