mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-29 08:34:39 +08:00
7 lines
106 B
Perl
7 lines
106 B
Perl
|
|
#!/usr/bin/env perl
|
||
|
|
use strict;
|
||
|
|
use warnings;
|
||
|
|
use List::Util 'shuffle';
|
||
|
|
my @arr = shuffle <>;
|
||
|
|
print @arr;
|