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

  1. #!/usr/bin/perl
  2. BEGIN { if (-e $ENV{SITE}.'/lib') { use lib $ENV{SITE}.'/lib'; } }
  3. use seed qw(rand64);
  4. &seed::setseed(0x49b1cffe || undef);
  5. my $n0 = seed::rand64(); # n < 18446744073709551616
  6. printf "n0: %s\n",$n0;
  7. exit $?;
  8. 1;