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