initial commit

This commit is contained in:
lucaspalomodevelop 2022-11-02 18:47:46 +01:00
commit e21d1337e0
3 changed files with 11 additions and 0 deletions

6
cpp_1/main.cpp Normal file
View File

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

5
cpp_1/makefile Normal file
View File

@ -0,0 +1,5 @@
dev: compile run
compile:
g++ -o program main.cpp
run:
./program

BIN
cpp_1/program Executable file

Binary file not shown.