You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
233 B
13 lines
233 B
#!/usr/bin/perl
|
|
|
|
BEGIN { if (-e $ENV{SITE}.'/lib') { use lib $ENV{SITE}.'/lib'; } }
|
|
use seed qw(rand64);
|
|
|
|
&seed::setseed(0x49b1cffe || undef);
|
|
my $n0 = seed::rand64(); # n < 18446744073709551616
|
|
printf "n0: %s\n",$n0;
|
|
|
|
exit $?;
|
|
|
|
|
|
1;
|