fork(1) download
  1. my @array = (3, 5, 4, 7);
  2.  
  3. my $score = 1;
  4. $score *= $_ for @array;
  5. print ($score / @array), "\n";
  6.  
Success #stdin #stdout 0s 3608KB
stdin
Standard input is empty
stdout
105