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