1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00
cdt/build/org.eclipse.cdt.managedbuilder.gnu.ui/templates/projecttemplates/MakefileHelloWorldCCProject/Basename.cpp

15 lines
414 B
C++

//============================================================================
// Name : $(baseName).cpp
// Author : $(author)
// Version :
// Copyright : $(copyright)
// Description : Hello World in C, Ansi-style
//============================================================================
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("$(message)");
return EXIT_SUCCESS;
}