The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use Test;
use vars qw($loaded);
use Benchmark qw(timediff timestr);
BEGIN { plan tests => 4 }
END { print "not ok 1\n" unless $loaded }
ok($loaded = 1);
ok(my $gen = Math::Random::MT->new(5489));
ok(0.814723691903055, $gen->rand());
ok(0.135477004107088, $gen->rand());