#include #include #include #include "../include/bmath.hh" using namespace bmath; using namespace std; int main() { mint four{4}; // should be trivially copyable static_assert(is_trivially_copyable_v>); // should be able to format auto formatted = format("{}\n", four); // and use to_string formatted = to_string(four); return 0; }