11 lines
97 B
C++
11 lines
97 B
C++
|
#include "mylib/foo.hpp"
|
||
|
|
||
|
namespace mylib {
|
||
|
|
||
|
int foo()
|
||
|
{
|
||
|
return 42;
|
||
|
}
|
||
|
|
||
|
} // end namespace mylib
|