use strict;
use Moo;
sub cmp {
my $self = shift;
return ( $_[0] cmp $_[1] );
}
1;