more operators

This commit is contained in:
Barrett Ruth 2025-08-30 18:38:08 -05:00
parent e002fd91d7
commit 12693fc20f
2 changed files with 28 additions and 7 deletions

View file

@ -30,7 +30,9 @@ int main() {
// cout << (mint<int, 4>{5} + mint<int, 4>{7});
// cout << pow(mint<int, 5>{4}, 5);
cout << (pow(mint<int>{5}, 5));
// cout << to_string(pow(mint<int>{5}, 5));
mint<int> x{5};
return 0;
}