Files
codeql/ruby/ql/test/library-tests/controlflow/graph/heredoc.rb
2021-10-15 11:47:28 +02:00

8 lines
63 B
Ruby

def double_heredoc
puts(<<A, <<A)
hello
A
world
A
end