mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 11:28:20 +00:00
acad8cfab1
Before adding the format checker, the mainline should be clean, to avoid false failures.
6 lines
130 B
C++
6 lines
130 B
C++
#include "fmt/format.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
for (int i = 0; i < argc; ++i) fmt::print("{}: {}\n", i, argv[i]);
|
|
}
|