Jorge Goncalvez wrote:
> 
> Hi, I have this:
> print NOUVEAU $newline2\n or die "je ne peux écrire dans $nouveau : $!\n";
> 
> But it  prints but didn't go to the next line(\n seems to be ignored)
> Why?


The newline needs to be in quotes to be interpolated

print NOUVEAU "$newline2\n" or die "je ne peux écrire dans $nouveau :
$!\n";



John
-- 
use Perl;
program
fulfillment

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

Reply via email to