7 lines
92 B
C++
7 lines
92 B
C++
|
#include <iostream>
|
||
|
|
||
|
void bar_fun(int x)
|
||
|
{
|
||
|
std::cout << "[bar: " << x << "]" << "\n";
|
||
|
}
|