Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
      my %new = ();
      return grep (!$new{$_}++, @_);
    }
    
  2. or download this
    Chromium:~ lexicon$ perl -l little2.pl 
    Unquoted string "unique" may clash with future reserved word at little
    +2.pl line 7.
    1,2,1
    1,2
    
  3. or download this
    Chromium:~ lexicon$ perl -l -MO=Deparse little2.pl 
    Unquoted string "unique" may clash with future reserved word at little
    +2.pl line 7.
    ...
        return grep((!$new{$_}++), @_);
    }
    little2.pl syntax OK