blob: a114945e2a1a7d0c5a05f5176b51b948b06231ea [file] [log] [blame]
#include <stdio.h>
int main()
{
// printf() displays the string inside quotation
#ifdef FULL_PROJECT
printf("Hello, World! Built from the source root.\n");
#else
printf("Hello, World! Built from a subdirectory of the source.\n");
#endif
return 0;
}