forked from Research/WhisperCom
Dominik Meyer
f637c3cee6
git-subtree-dir: libs/loguru git-subtree-split: 9c2fea0d4530657f23259be4132f8101c98b579e
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!");
|
|
}
|