On Wednesday, June 26, 2002, at 05:13 , Felix Geerinckx wrote:

> Why not use
>
>     my %in = map { $_ => 1} qw(h eh hd p c);
>     $content = "\n" if $in{$c};

We keep tossing around these 'map' tricks -
and I was wondering why we do not put them up in
the

        BEGIN {
                %in = map { $_ => 1} qw(h eh hd p c);
                ....
        }

So that we compile them once?

ciao
drieux

---


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

Reply via email to