Skip to content

Instantly share code, notes, and snippets.

@lnickers2004
Created May 6, 2014 15:30
Show Gist options
  • Save lnickers2004/8d4b718b0623d393ecf6 to your computer and use it in GitHub Desktop.
Save lnickers2004/8d4b718b0623d393ecf6 to your computer and use it in GitHub Desktop.
Qt QDebug qDebug() usage
#include <QCoreApplication>
#include <QDebug>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
qDebug() << "Hello World!";
qDebug("Yes!");
return a.exec();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment