Skip to content

Instantly share code, notes, and snippets.

@davidcelis
Last active October 11, 2015 11:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidcelis/71e958b5e16d2082ead7 to your computer and use it in GitHub Desktop.
Save davidcelis/71e958b5e16d2082ead7 to your computer and use it in GitHub Desktop.
heredocs
# Bad
"John Doe
12345 Boulevard Blvd.
City, ST 55555"
# Good
<<-ADDRESS
John Doe
12345 Boulevard Blvd.
City, ST 55555
ADDRESS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment