#pragma once #include #include template void print(std::format_string fmt, Args&&... args) { auto str = std::vformat(fmt.get(), std::make_format_args(args...)); printf("%s", str.c_str()); }