Help for this page

Select Code to Download


  1. or download this
    sub is_integer { ~$_[0] !~ /\D/ }
    
  2. or download this
    #!/usr/bin/perl -wT
    use strict;
    ...
    }
    
    sub is_integer { ~$_[0] !~ /\D/ }