Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl
    # mytest.pl
    ...
    } else {
      print "$s isn't a number\n";
    }
    
  2. or download this
    ./mytest.pl 123.2
    123.2 is a number
    
    ./mytest.pl aBcd
    aBcd isn't a number