7 lines
77 B
C++
7 lines
77 B
C++
|
#include <iostream>
|
||
|
|
||
|
void print(std::string text)
|
||
|
{
|
||
|
std::cout << text;
|
||
|
}
|