Pratyush Desai
5556366d4b
A workspace to trial things across different IDEs and devenvs Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
16 lines
209 B
C++
16 lines
209 B
C++
#include <iostream>
|
|
#include "log.h"
|
|
|
|
|
|
int main()
|
|
{
|
|
InitLog();
|
|
int x = 6;
|
|
bool comparison_result = x == 5;
|
|
if (comparison_result)
|
|
{
|
|
Log("Hello World!");
|
|
}
|
|
std::cin.get();
|
|
}
|