Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    }
    
    print join(', ', @random_set), "\n";
    
  2. or download this
    use List::Util qw/shuffle/;
    my @random_set = (shuffle 0..11)[0..9];