mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
Check in.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user