Help for this page

Select Code to Download


  1. or download this
    my ($foo,$bar,$baz,$i);
    for $i (0..10) {
      print "$i\n";
    };
    
  2. or download this
    my $i;
    if (rand > 0.5) {
      $i = 1;
    };