makefile template

This commit is contained in:
Daniel Yrovas 2022-03-02 17:05:08 +11:00
parent 999ed87a92
commit 246de238c4
Signed by: danielyrovas
GPG key ID: 502473574FB06D96
4 changed files with 63 additions and 0 deletions

7
src/main.cpp Normal file
View file

@ -0,0 +1,7 @@
#include <iostream>
int main()
{
std::cout << "Hello World!\n";
return 0;
}