Add hello_world.cpp

This commit is contained in:
2026-04-01 21:20:43 -05:00
parent 163055304d
commit e9882301f8
2 changed files with 6 additions and 0 deletions

6
ch_0/hello_world.cpp Normal file
View File

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