labs-edaf30/lab1/separate_fn.cc

7 lines
113 B
C++
Raw Normal View History

2021-10-27 15:15:47 +02:00
#include <iostream>
void the_function(const std::string& s)
{
std::cout << "the_function: " << s << "\n";
}