1#pragma once 2 3#include <iostream> 4#include <string> 5 6namespace mathlogger { 7inline void WriteLog(std::string const& msg) 8{ 9 std::cout << msg; 10} 11} 12 13