Help for this page

Select Code to Download


  1. or download this
    sub is_numeric {
      use warnings FATAL => qw( numeric uninitialized );
    ...
      my $x = shift;
      return eval { $x == $x };
    }