RosettaCodeData/Task/Pick-random-element/Perl/pick-random-element.pl

3 lines
52 B
Perl

my @array = qw(a b c);
print $array[ rand @array ];