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