mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 16:23:04 +02:00
11 lines
145 B
C++
11 lines
145 B
C++
#ifndef BASIC_CPP
|
|
#define BASIC_CPP
|
|
#include <iostream>
|
|
|
|
void print(const std::string s)
|
|
{
|
|
std::cout << s << std::endl;
|
|
}
|
|
|
|
#endif // BASIC_CPP
|