Ruby Heredoc
# heredoc with stripped indentation
heredoc = <<~TXT.strip
This is
a multine string
TXT
#=> "This is\na multine string"
Mateusz Drewniak
# heredoc with stripped indentation
heredoc = <<~TXT.strip
This is
a multine string
TXT
#=> "This is\na multine string"