#include #include "print/print.hpp" #if __cplusplus >= 202302L # define do_print(x) std::print(x) #else // Old C++ version. # define do_print(x) std::cout << x << std::endl #endif // Check C++ version. PRINTAPI void print(const char* msg) { do_print(msg); }