Help for this page

Select Code to Download


  1. or download this
    {
       $_ = <INFO>;
    ...
       last if /^\* Menu:/;
       redo;
    }
    
  2. or download this
    while (1) {
       $_ = <INFO>;
       return %Header unless defined $_ and !/^\037/;
       last if /^\* Menu:/;
    }