1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-30 10:00:26 +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 {
void foo()
{
printf("This is Second::foo\n")
printf("This is Second::foo\n");
}
}