Skip to content

Instantly share code, notes, and snippets.

@technoscavenger
Created September 22, 2025 01:55
Show Gist options
  • Select an option

  • Save technoscavenger/b5ccb464202b93e899227a7515ab523b to your computer and use it in GitHub Desktop.

Select an option

Save technoscavenger/b5ccb464202b93e899227a7515ab523b to your computer and use it in GitHub Desktop.
Qt Console app
#include <QCoreApplication>
#include <QTextStream>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
QTextStream(stdout) << "Hello, world\n";
return a.exec();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment