labs-edaf30/lab1/cmake-example/testlib/bar.cc

7 lines
92 B
C++
Raw Normal View History

2021-10-27 15:15:47 +02:00
#include <iostream>
void bar_fun(int x)
{
std::cout << "[bar: " << x << "]" << "\n";
}