Created ppg.cpp and compiled it, resulting in ppg.o and a.out files.

This commit is contained in:
Alexandre VEROT 2023-02-24 08:57:38 +01:00
parent 24551922e9
commit 39c77f7861
3 changed files with 9 additions and 0 deletions

BIN
a.out Executable file

Binary file not shown.

9
ppg.cpp Normal file
View File

@ -0,0 +1,9 @@
//C++
#include <iostream>
int main(){
//Print "PPG algorithm" to terminal
std::cout << "PPG algorithm"<< std::endl;
return 0;
}

BIN
ppg.o Normal file

Binary file not shown.