| 902 | /// Format list of arguments to std::cout, according to the given format string |
| 903 | template <typename... Args> |
| 904 | void printf(const char *fmt, const Args &...args) { |
| 905 | format(std::cout, fmt, args...); |
| 906 | } |
| 907 | |
| 908 | template <typename... Args> |
| 909 | void printfln(const char *fmt, const Args &...args) { |