Files
qt-creator/share/qtcreator/templates/wizards/projects/plainc/main.c
Tobias Hunger f76b9b549c Move plain C application wizards into one Json Wizard
Change-Id: If01fe6722c76df83015afa68b18d62ff1eaf523f
Reviewed-by: Alessandro Portale <alessandro.portale@theqtcompany.com>
2015-05-28 15:52:44 +00:00

8 lines
84 B
C

#include <stdio.h>
int main(void)
{
printf("Hello World!\\n");
return 0;
}