[EMAIL PROTECTED] writes:

> print << x 10;
> The camels are coming!

Here documents always need a termination.  Maybe you'd see it better
if you use a more visible one:

$ perl -e 'print <<EOM x 10;
The camels are coming!
> EOM'

Note (sort of starndard) terminator used here is EOM.
Thats how here docs work.  They puke out everything between Start
mark (EOM) and end mark (EOM)


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Reply via email to