1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-31 18:32:22 +02:00

Update c++.md (#5311)

Added a semicolon to the namespace code
This commit is contained in:
xkh-829
2025-05-21 21:06:24 +08:00
committed by GitHub
parent cbb8362760
commit 7a104b4025

View File

@@ -141,7 +141,7 @@ namespace First {
namespace Second { namespace Second {
void foo() void foo()
{ {
printf("This is Second::foo\n") printf("This is Second::foo\n");
} }
} }