in reply to Re: negative modulus test failure
in thread negative modulus test failure

You can always wrap your modulus code with no integer

use integer; print 3 % -10, "\n"; { no integer; print 3 % -10, "\n"; };