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