Help for this page

Select Code to Download


  1. or download this
            for (my $i = 1; $i < 10; $i++) {
                ...
            }
    
  2. or download this
        {
            my $i = 1;
    ...
                $i++;
            }    
        }
    
  3. or download this
    use strict;
    use warnings;
    ...
    }
    
    $_->() for @while;
    
  4. or download this
    cfor:     i=1     x=4 at d:/exp/pm_closure2.pl line 11.
    cfor:     i=2     x=4 at d:/exp/pm_closure2.pl line 11.
    ...
    while:     i=1     x=3 at d:/exp/pm_closure2.pl line 25.
    while:     i=2     x=3 at d:/exp/pm_closure2.pl line 25.
    while:     i=3     x=3 at d:/exp/pm_closure2.pl line 25.