Help for this page

Select Code to Download


  1. or download this
    sub makeitbig {
      my $default_value = 'xxx';
    ...
      my $random1 = int( rand(makeitbig()) );
      return $random1;    
    }
    
  2. or download this
    # not tested, but you get the gist
    sub makeitbig {
    ...
    sub testmode {
      return int( rand(makeitbig()) );    
    }