Help for this page

Select Code to Download


  1. or download this
    my $data_file = "ActiveItems2.txt";
    open(DAT, $data_file) || die("Could not open file: $!");
    ...
    print for sort keys %seen;
    
    close(DAT);
    
  2. or download this
    @seen{<DAT>} = (); # Hash slice assignement
    print for sort keys %seen;