Use EOF as the marker for a here document : Here Document « String « Ruby
- Ruby
- String
- Here Document
Use EOF as the marker for a here document
long_string = <<EOF
Here is a long string
With many paragraphs
EOF
puts long_string
Related examples in the same category