This commit is contained in:
2025-06-23 21:09:25 +09:00
commit 32cd5b9be8
50 changed files with 59220 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#include <iostream>
namespace header1
{
int foo()
{
std::cout << "This is H1 - foo()" << std::endl;
return 0;
}
void bar()
{
std::cout << "This is H1 - bar()" << std::endl;
}
}