add source code of this project

This commit is contained in:
2024-10-14 14:10:17 +03:00
commit e89b1ff2a4
3 changed files with 16 additions and 0 deletions

6
lib/printer.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include <iostream>
void print(std::string text)
{
std::cout << text;
}

1
lib/printer.h Normal file
View File

@@ -0,0 +1 @@
void print(std::string text);