Skip to content

Commit 6becb32

Browse files
committed
Fix format
1 parent f7b5aff commit 6becb32

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/06-run/test_args.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <iostream>
22
int main(int argc, char* argv[]) {
3-
std::cout << "argc=" << argc << '\n';
4-
for (int i = 1; i < argc; ++i) {
5-
std::cout << "arg[" << i << "]=" << argv[i] << '\n';
6-
}
3+
std::cout << "argc=" << argc << '\n';
4+
for (int i = 1; i < argc; ++i) {
5+
std::cout << "arg[" << i << "]=" << argv[i] << '\n';
6+
}
77
}

0 commit comments

Comments
 (0)