#!/usr/bin/perl
# ABSTRACT: Generate a shuffled list of things!
# PODNAME: bin/Shuffler

use strict;
use warnings;
use List::Util qw(shuffle);
die "Usage: perl $0 A B C ...\n" unless @ARGV;
my @things = @ARGV;
print join("\n", shuffle(@things)), "\n";

__END__

=pod

=encoding UTF-8

=head1 NAME

bin/Shuffler - Generate a shuffled list of things!

=head1 VERSION

version 0.04

=head1 AUTHOR

Gene Boggs <gene@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Gene Boggs.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut
