Help for this page

Select Code to Download


  1. or download this
    sub is_number {
         my $arg = shift;
         return defined $arg && !ref $arg && ($arg^$arg) eq '0';
    }