This commit is contained in:
_N3m0 2023-04-25 16:20:04 +02:00
commit 75471c6637
2 changed files with 8 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
build/
.wakatime-project

6
src/main.cpp Normal file
View File

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