Help for this page

Select Code to Download


  1. or download this
    while (<>) {
        do_something($_) if (6..eof());
    }
    
  2. or download this
    while (<>) {
        next if (1..5);
        # Whatever here
    }