Help for this page

Select Code to Download


  1. or download this
    print"Enter the starting amount: ";
    while( $startAmount !~ /^\d+/ ) {
    ...
            last;
        }
    }
    
  2. or download this
    print"Enter the starting amount: ";
    {
    ...
        # this line is reached if $startAmount is a number
        print "ok, \$startAmount is $startAmount\n";
    }