add hello world

This commit is contained in:
2020-02-10 00:45:05 +08:00
parent 314502da8b
commit 7c23233221

View File

@@ -0,0 +1,7 @@
#include <iostream>
using namespace std;
int main() {
cout << "hello" << " " << "world" << "!" << endl;
}