forked from Research/WhisperCom
14 lines
261 B
C++
14 lines
261 B
C++
|
#include <iostream>
|
||
|
|
||
|
#include "loguru_example.hpp"
|
||
|
|
||
|
#include "../loguru.cpp"
|
||
|
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
loguru::init(argc, argv);
|
||
|
LOG_F(INFO, "Hello from main.cpp!");
|
||
|
complex_calculation();
|
||
|
LOG_F(INFO, "main function about to end!");
|
||
|
}
|