Help for this page

Select Code to Download


  1. or download this
    for @list -> $a {
        # here $a is local'ized in the perl 5 sense
    }
    
  2. or download this
    for @list {
        say $^a; # $^a is only available in this block
    }
    
  3. or download this
    my $a;
    for @list -> $=a {
        # $=a is the "reused" version of $a
    }
    # here $a has the last value of $=a