feat: chapt6

This commit is contained in:
Mzebra
2023-12-14 22:37:46 +08:00
commit 7340e1e035
221 changed files with 60210 additions and 0 deletions

6
chapt1/hello_world.cpp Normal file
View File

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