Commit 9f2ccee1 by 刘汉章

Add new file

parent d5c3044e
#include <QCoreApplication>
#include <QDebug>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
QList<QString> list;
{
QString str("This is a test string");
list << str;
}
qDebug()<<list[0]<<"How are you";
return a.exec();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment