Files
Document-Management-System-…/vendor/scrivo/highlight.php/test/markup/ruby/heredoc.txt

15 lines
146 B
Plaintext
Raw Normal View History

2021-04-07 19:25:18 -04:00
def foo()
msg = <<-HTML
<div>
<h4>#{bar}</h4>
</div>
HTML
end
def baz()
msg = <<~FOO
<div>
<h4>#{bar}</h4>
</div>
FOO
end