Help for this page

Select Code to Download


  1. or download this
        my $el;
        while ($el = pop @els) {
            # Body of loop
        }
    
  2. or download this
        sub while (BOOL $condition, &closure) {...}
    
        sub if (BOOL $condition, &closure) {...}
    
  3. or download this
        if condition(), &call_me;
    
  4. or download this
        &debug := { if BEGIN{$debug}, &^action };
    
        # and later...
    
        debug { print "here" }