Help for this page

Select Code to Download


  1. or download this
    my @coderefs;
    for $i (@array) {
      push @coderefs, sub { print $i; };
    }
    
  2. or download this
    my @coderefs;
    for (@array) {
      my $i = \$_;
      push @coderefs, sub { print $$i; };
    }