Help for this page

Select Code to Download


  1. or download this
    for (my $i=1; $i<=10000; $i++) {
      my $s = Sheep->new($i);
      $gate->through($s);
    }
    
  2. or download this
    my @herd;
    for (1..10000) {
      push @herd(Sheep->new($_));
    }
    $gate->through(\@herd);
    
  3. or download this
    $gate->through(Sheep->new($_)) for (1..10000);
    
  4. or download this
    $me =~ s!wide awake!fast asleep!g;
    
  5. or download this
    $me =~ s!wide awake!asleep(fast)!ge;
    
  6. or download this
    $me =~ s!wide awake!asleep('fast')!ge;
    
  7. or download this
    $me =~ s!(wide )?awake!asleep('fast')!ge;
    
  8. or download this
    $me =~ s!(?:wide\s+)?awake!asleep('fast')!ge;