Hi I'm brand new to Qt, hence the forum, and having troubles running a tester hello world program.
I used create project - console project.
Qt Code:
  1. #include <QtCore/QCoreApplication>
  2. #include <QDebug>
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6. QCoreApplication a(argc, argv);
  7. qDebug() << "Hello World";
  8.  
  9. return a.exec();
  10. }
To copy to clipboard, switch view to plain text mode 

This builds ok and runs with no errors but the terminal doesn't output any text.
When I tried not outputting to console it outputted into the application output window fine.
I'm not sure what to check next, any help is much appreciated.
I'm on UBUNTU 12.04