sp-kr-part2/lib/printer.cpp

7 lines
77 B
C++

#include <iostream>
void print(std::string text)
{
std::cout << text;
}