String Ruby

str = "This is a test. "
str.freeze
begin
  str << " Don't be alarmed."   # Attempting to modify
rescue => err
  puts "#{err.class} #{err}"
end
# Output:
#   TypeError: can't modify frozen string