Pratyush Desai
5556366d4b
A workspace to trial things across different IDEs and devenvs Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
12 lines
159 B
C++
12 lines
159 B
C++
#include "log.h"
|
|
#include <iostream>
|
|
|
|
void Log(const char* message)
|
|
{
|
|
std::cout << message << std::endl;
|
|
}
|
|
void InitLog()
|
|
{
|
|
Log("Initializing Log");
|
|
}
|