Help for this page

Select Code to Download


  1. or download this
    my @all   = <FILE>; 
    my @some = grep { !/^\s*$/ } (my @most = map { s/#.*$//; $_ } @all);
    
  2. or download this
    s/#.*$// for my @most = @all;