Skip to content

Commit

Permalink
Changed the template application to Hello World.
Browse files Browse the repository at this point in the history
This provides a more useful template when making a simple Makefile
project.

Pulled out of eclipse-cdt#314
  • Loading branch information
ewaterlander authored and jonahgraham committed Mar 16, 2023
1 parent 65ac74f commit bd255e2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build/org.eclipse.cdt.make.core/templates/simple/main.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#include <iostream>

int main(int argc, char **argv) {
std::cout << "Hello World" << std::endl;
return 0;
}

0 comments on commit bd255e2

Please sign in to comment.