添加c++学习目录

This commit is contained in:
LingZhaoHui 2021-01-17 20:53:08 +08:00
parent 68630dc53e
commit 2e01b3a6f3
2 changed files with 10 additions and 0 deletions

1
.gitignore vendored
View File

@ -75,3 +75,4 @@ dkms.conf
*.o
core
build

9
c++/hello_world.cpp Normal file
View File

@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, world!\n";
return 0;
}