cppIntro/HelloWorld/log.cpp
Pratyush Desai 5556366d4b
Intro to C++
A workspace to trial things across different IDEs and devenvs

Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
2024-12-04 22:44:02 +05:30

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");
}