document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <QCoreApplication>
  2. #include <QTextStream>
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6.     QCoreApplication a(argc, argv);
  7.     QTextStream out(stdout);
  8.  
  9.     out << "MediaTutorial Hello.. world.."<<endl;
  10.     return 0;
  11.  
  12.     //return a.exec();
  13. }
');