RosettaCodeData/Task/Random-number-generator-device-/Perl/random-number-generator-device--3.pl

11 lines
292 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
sub read_random {
my $device = '/dev/urandom';
open my $in, "<:raw", $device # :raw because it's not unicode string
or die "Can't open $device: $!";
sysread $in, my $rand, 4 * shift;
unpack('L*', $rand);
}
print "$_\n" for read_random(10);