#pragma once #include #include #include namespace hex { template inline std::string format(std::string_view format, Args... args) { return fmt::format(fmt::runtime(format), args...); } template inline void print(std::string_view format, Args... args) { fmt::print(fmt::runtime(format), args...); } }