Create hello.cpp

This commit is contained in:
Leo Lingfeng Li
2021-08-03 18:47:35 +08:00
committed by GitHub
parent 76641d306e
commit 44e147b60d

6
leostudiooo/hello.cpp Normal file
View File

@ -0,0 +1,6 @@
#include<bits/stdc++.h>
using namespace std;
int main(){
cout<<"Hello World!";
return 0;
}