Help for this page

Select Code to Download


  1. or download this
        $output = capture("$comando");
    ...
        $outTitolo = capture("$titolo");
    
  2. or download this
        undef my $oreTotali;
    
  3. or download this
    print FILE "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";
    
  4. or download this
    print FILE "\n" x 17;
    
  5. or download this
    sub count_unique {
        my @array = @_;
        my %count;
        map { $count{$_}++ } @array;
    
  6. or download this
    sub count_unique {
        my %count;
        $count{$_}++ for @_;