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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

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;
}