Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
        print &$get_next . "\n" if rand(5) < 2.0;
        print &$get_another . "\n" if rand(5) < 3.5;
    }
    
  2. or download this
    $ ./continuation.pl
    Next: 600
    ...
    Another: 1000
    Another: 1100
    Next: 1000