8 lines
83 B
Text
8 lines
83 B
Text
|
|
x = StringBuilder.new
|
||
|
|
|
||
|
|
5.times do
|
||
|
|
x.append "ha"
|
||
|
|
end
|
||
|
|
|
||
|
|
puts x # ==> "hahahahaha"
|