sp-kr-part2/lib/printer.cpp

7 lines
77 B
C++
Raw Permalink Normal View History

2024-10-14 14:10:17 +03:00
#include <iostream>
void print(std::string text)
{
std::cout << text;
}