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

12 lines
No EOL
159 B
C++

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