Created
September 22, 2025 01:55
-
-
Save technoscavenger/b5ccb464202b93e899227a7515ab523b to your computer and use it in GitHub Desktop.
Qt Console app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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