Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    }
    # lets look at a few
    print $adds[rand $#adds], $/ for (1..100);
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    while (my $val = &$gen) {
        print $val, $/ ;
    }