The new method can take a string argument
title = String.new # => "" title = String.new( "Much Ado about Nothing" ) title = String.new # => "" title.empty? # => false title.length # => 22