mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-21 21:52:10 +02:00
15 lines
414 B
C++
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;
|
|
}
|