mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-06 13:43:06 +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
|