This commit is contained in:
j3d1 2020-12-13 23:28:05 +01:00
parent 712c8a2bf3
commit bc2cdb51f4
3 changed files with 19 additions and 0 deletions

9
Makefile Normal file
View file

@ -0,0 +1,9 @@
all: test main
main:
g++ main.cpp -o main
test:
g++ test.cpp -o test
./test

6
main.cpp Normal file
View file

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

4
test.cpp Normal file
View file

@ -0,0 +1,4 @@
int main(){
return 0;
}