From now on programming in C++, no Python cheats anymore

This commit is contained in:
2021-04-16 16:54:43 +02:00
parent 17d591c658
commit dbc6cfef05
3 changed files with 36 additions and 0 deletions

11
base.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <iostream>
using namespace std;
int main(){
cout << "Hello this is Patrick" << endl;
return 0;
}