Help for this page

Select Code to Download


  1. or download this
    for (my $i = 1; $i <= 9; $i++) {
      s/\s/;/;
    }
    
  2. or download this
    for (1..9) {
      s/\s/;/;
    }
    
  3. or download this
    for my $i (1..9) {
      s/\s/;/;
    }