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.

15 lines
229 B

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