Help for this page

Select Code to Download


  1. or download this
        $ip_no = $ARGV[0];
        if ($ip_no!="") {
    ...
            print "Enter number.";
            exit;
        }
    
  2. or download this
    if ($ARGV[0] != "") {
        $user_ip = $ARGV[0];
    ...
    print "Good odd number ${user_ip}";
    
    __END__