rd-coded.
Do we desire a patch?
--
Steven Schubiger
<[EMAIL PROTECTED]>
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
On 28 Mar, T Raymond wrote:
> #!/usr/bin/perl -w
Refactor with use warnings instead of -w.
-w leaks warnings to all scopes, i.e. external modules,
whereas warnings keeps itself to the local block.
See perldoc warnings therefore.
> print header,
What is header supposed to act on?
If it's the m
On 24 Mar, Sara wrote:
> What If I want to remove dupes from @row? like if $row[2] is similar in
> multiple records,
> only one entry should be showed, the duplicates should not appear in the
> print.
> Any ideas?
#! /usr/bin/perl
use strict;
use warnings;
{
local $" = "\n";
my (@d