in reply to Re: Concatnate long statement
in thread Concatnate long statement

As here documents do introduce newlines in your string everywhere you start a new line they are not the same as a simple concatenation, behold:
#!/perl my $foo = <<EOF; Would these two lines become one in a here document? EOF print "=$foo=\n";
will output:
=Would these two lines become one in a here document? =