From 13c53e6181bf8d8e5ad9fdf28368922ddf184d78 Mon Sep 17 00:00:00 2001 From: twinbfield Date: Thu, 2 Apr 2026 22:12:13 -0500 Subject: [PATCH] Modify hello_world --- ch_0/{hello_world.cpp => hello_world/main.cpp} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename ch_0/{hello_world.cpp => hello_world/main.cpp} (58%) diff --git a/ch_0/hello_world.cpp b/ch_0/hello_world/main.cpp similarity index 58% rename from ch_0/hello_world.cpp rename to ch_0/hello_world/main.cpp index 5a2267d..ad8283b 100644 --- a/ch_0/hello_world.cpp +++ b/ch_0/hello_world/main.cpp @@ -1,6 +1,6 @@ #include int main() { - std::cout << "Hello World!\n"; + std::cout << "Hello, World!\n"; return 0; }