Help for this page

Select Code to Download


  1. or download this
      grep !defined, values %stats || last;
      my $swvn=grep !defined, values %stats;
      print $swvn;
      $swvn || last;
    
  2. or download this
      scalar(grep !defined, values %stats) || last;
      my $swvn=grep !defined, values %stats;
      print $swvn;
      $swvn || last;