cppIntro/HelloWorld/log.cpp

12 lines
159 B
C++
Raw Permalink Normal View History

#include "log.h"
#include <iostream>
void Log(const char* message)
{
std::cout << message << std::endl;
}
void InitLog()
{
Log("Initializing Log");
}