Say you have the following code: ``` ruby # A sample of ruby with a heredoc # # puts <<END # foo = "bar" # baz = 42 # END # # foo = "bar" # # baz = 42 # #=> nil class HereDoc; end ``` The heredoc is not being respected: 