Improve coding style consistency

This commit is contained in:
vitaut
2016-03-18 07:59:04 -07:00
parent 0c901efb16
commit c052cf11b9
4 changed files with 7 additions and 11 deletions

View File

@@ -0,0 +1,6 @@
#include "cppformat/format.h"
int main(int argc, char** argv) {
for(int i = 0; i < argc; ++i)
fmt::print("{}: {}\n", i, argv[i]);
}