From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#
# compare v7 to v0.
#
use strict;
use MyNote;
use UUID ':all';
ok 1, 'loaded';
{# binary
generate_v7(my $u7);
generate_v0(my $u0);
ok is_null($u0), 'is null';
isnt $u7, $u0, 'binary not null';
is compare($u7, $u0), 1, 'greater than binary';
}
{# string
my $u7 = uuid7();
my $u0 = uuid0();
isnt $u7, $u0, 'string not null';
is compare($u7, $u0), 1, 'greater than string';
}
done_testing;