File: rand64.pl

package info (click to toggle)
libmath-int64-perl 0.57-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 588 kB
  • sloc: perl: 2,593; ansic: 320; makefile: 3
file content (10 lines) | stat: -rw-r--r-- 136 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl

use strict;
use warnings;
use 5.010;
use Math::Int64 qw(uint64_rand);

my $n = shift || 1;

say uint64_rand for 1..$n;