6 lines
75 B
Raku
6 lines
75 B
Raku
use FiniteField;
|
|
$*modulus = 13;
|
|
|
|
sub f(\x) { x**100 + x + 1};
|
|
|
|
say f(10);
|