mirror of
https://github.com/SimoneN64/Kaizen.git
synced 2025-04-02 10:41:53 -04:00
5 lines
130 B
C++
5 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]);
|
|
}
|