Help for this page

Select Code to Download


  1. or download this
    my $x;
    if (f()) {
    ...
       ...
       $x = ...;
    }
    
  2. or download this
    my $found;
    for (...) {
    ...
          $found = ...
       }
    }
    
  3. or download this
    my @a;
    while (...)
       ...
       push @a, ...;
    }