Help for this page

Select Code to Download


  1. or download this
    while(<NODE>){
        push(@lines, $_);
    }
    
  2. or download this
    push( @lines, <NODE> );
    
  3. or download this
    if($is_script eq 'yes'){
          middle();
    ...
          middle();
          bottom();
      }
    
  4. or download this
    top() unless ($is_script eq "yes");
    middle();
    bottom();