Help for this page

Select Code to Download


  1. or download this
    {
       my $saved_option = 10; # default value is 10
    ...
          return $saved_option
       }
    }
    
  2. or download this
    my $option = 10;
    while (1) {
    ...
       my $random = int(rand($option));
       # do stuff with $random
    }