String Builder



examples/strings/build.cr
str = String.build do |temp|
  temp << "hello "
  temp << 1
end
puts str # => "hello 1"