Help for this page

Select Code to Download


  1. or download this
      my $x = 10;
      for my $i (1 .. $x) {
        $x = 1;
        print $i;
      }
    
  2. or download this
      my $x = 10;
      for (my $i = 1; $i <= $x; $i++) {
        $x = 1;
        print $i;
      }
    
  3. or download this
      my @foo = 1 .. $x;
  4. or download this
      foreach (@foo) { ... }