in reply to qw with comma delimiter

Certainly, but I'd just hand use a real list in the first place. Here's how to negate the wrong use of qw() you describe,

sub import { my $class = shift; my @list = split /,/, join ' ', @_ if @_; # ... }
but don't do that. You sound like you are cargo-culting qw//.

After Compline,
Zaxo

Replies are listed 'Best First'.
Re: Re: qw with comma delimiter
by jacques (Priest) on Jul 26, 2003 at 05:10 UTC
    You sound like you are cargo-culting qw//.

    Well, it was consensual cargo-culting. So I'm only guilty of adultery.