🎉 init

This commit is contained in:
Kim Yang
2020-07-26 11:06:59 +08:00
commit 957440d0a2
4 changed files with 76 additions and 0 deletions

6
HelloWord.cpp Normal file
View File

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