labs-edaf30/lab1/separate_fn.cc
Sven Gestegard Robertz e4df45f4a9 imported lab skeletons
2021-10-27 15:39:22 +02:00

6 lines
113 B
C++

#include <iostream>
void the_function(const std::string& s)
{
std::cout << "the_function: " << s << "\n";
}