Modular arithmetic
There is an ecosystem module called Modular which works basically as Perl 5's Math::ModInt.
use Modular;
sub f(\x) { x**100 + x + 1};
say f( 10 Mod 13 )
Output:
1 「mod 13」
There is an ecosystem module called Modular which works basically as Perl 5's Math::ModInt.
use Modular;
sub f(\x) { x**100 + x + 1};
say f( 10 Mod 13 )
1 「mod 13」