asm_book/section_1/hello_world/v1.cpp
2022-05-16 21:28:28 -05:00

10 lines
No EOL
140 B
C++

#include <iostream>
using namespace std;
int main(int argc, char * argv[]) {
while (*argv) {
cout << *(argv++) << endl;
}
return 0;
}