Files
1819old/CplusplusPractice/header2.h
2025-06-23 21:09:25 +09:00

15 lines
226 B
C++

#include <iostream>
namespace header2
{
int foo()
{
std::cout << "This is H2 - foo()" << std::endl;
return 0;
}
void bar()
{
std::cout << "This is H2 - bar()" << std::endl;
}
}