Help for this page

Select Code to Download


  1. or download this
    while (defined($_ = <INHANDLE>) || ($_ = "AFTERFILE")){
        stuff;
        last if $_ eq "AFTERFILE";
    }
    
  2. or download this
    LOOP: {
        $_ = <>;
        stuff;
        redo LOOP if defined;
    }