10 lines
110 B
Ruby
10 lines
110 B
Ruby
|
a = <<XXX # :nodoc:
|
||
|
heredoc
|
||
|
XXX
|
||
|
|
||
|
puts(<<-ONE, <<-TWO)
|
||
|
content for heredoc one
|
||
|
ONE
|
||
|
content for heredoc two
|
||
|
TWO
|