mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 16:23:14 +02:00
11 lines
196 B
C++
11 lines
196 B
C++
// "Copyright [2023] <Krzysztof Rudnicki>"
|
|
#ifndef MISC_CPP
|
|
#define MISC_CPP
|
|
#include <iostream>
|
|
#include "./misc.hpp"
|
|
void print(const std::string s) {
|
|
std::cout << s << std::endl;
|
|
}
|
|
|
|
#endif
|