Just a nit:
unless (grep { $array_ref->[0] eq $_ } keys %token) {
is better as:
unless (exists $token{$array_ref->[0]}) {
In reply to Re: "if" Considered Harmful in OO programming
by jryan
in thread "if" Considered Harmful in OO programming
by Ovid
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |