Thread print << eof: manchma gehts manchma nich (6 answers)
Opened by rio at 2004-06-16 10:38

Gast Gast
 2004-06-16 18:03
#2894 #2894
my $mein_text = 'Test';

Code: (dl )
1
2
3
print <<EOF;
<p>$mein_text</p>
EOF

liefert: Test

Code: (dl )
1
2
3
print <<"EOF";
<p>$mein_text</p>
EOF

liefert: Test

Code: (dl )
1
2
3
print <<'EOF';
<p>$mein_text</p>
EOF

liefert: <p>$mein_text</p>\n\n

<!--EDIT|Dieter|1087394654-->

View full thread print << eof: manchma gehts manchma nich