Files
qt-creator/share/qtcreator/templates/wizards/helloworld/main.cpp

8 lines
92 B
C++
Raw Normal View History

#include <cstdio>
int main(int, char **)
{
std::printf("%MESSAGE%\n");
return 0;
}