mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 19:23:06 +02:00
10 lines
150 B
C++
10 lines
150 B
C++
|
|
#ifndef MISC_CPP
|
||
|
|
#define MISC_CPP
|
||
|
|
#include <iostream>
|
||
|
|
#include "misc.hpp"
|
||
|
|
void print(const std::string s)
|
||
|
|
{
|
||
|
|
std::cout << s << std::endl;
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|