mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
22 lines
316 B
C++
22 lines
316 B
C++
#include <QtCore/QString>
|
|
#include <QtCore/QDebug>
|
|
#include <stdio.h>
|
|
|
|
int main (int argc, char* argv[]) {
|
|
|
|
if (argc < 2) {
|
|
printf("usage: %s arg1 ...\n", argv[0]);
|
|
return 1;
|
|
}
|
|
|
|
for (int i=1; i<argc; i++) {
|
|
|
|
QString str(argv[i]);
|
|
|
|
qDebug() << str;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|