Help for this page

Select Code to Download


  1. or download this
    Can't use string ("1") as a SCALAR ref while "strict refs" in use at .
    +... line 6.
    
  2. or download this
    my %values = (
        a => 'value a',
    ...
        ($a,$b,$c,$d)= map { $values{ $_ } || $_ } @captured;
    };
    print $a,"\n",$b,"\n",$c,"\n",$d;