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

15 lines
226 B
C++

#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;
}
}