Help for this page

Select Code to Download


  1. or download this
    my @colors=qw(red blue green yellow orange purple violet);
    print "----- our \$x; for \$x ...; after for block ---------\n";
    ...
      print "leaving localization block\n";
    }
    red_0();
    
  2. or download this
    ----- our $x; for $x ...; after for block ---------
    setting $x to 'x'
    ...
    doubling $x: <X|X>
    leaving localization block
    doubling $x: <x|x|x|x>
    
  3. or download this
    my @colors=qw(red blue green yellow orange purple violet);
    print "----- my \$x; for \$x ... ---------\n";
    ...
    $colors[0]='RED';
    print "setting \$colors[0] to 'RED'\n";
    red_0();
    
  4. or download this
    ----- my $x; for $x ... ---------
    set $x to 'x'
    ...
    setting $colors[0] to 'RED'
    doubling $x: <RED|RED>
    doubling $x: <RED|RED|RED|RED>