7 lines
113 B
C++
7 lines
113 B
C++
|
#include <iostream>
|
||
|
|
||
|
void the_function(const std::string& s)
|
||
|
{
|
||
|
std::cout << "the_function: " << s << "\n";
|
||
|
}
|