hack/examples/macros/main.cpp

13 lines
186 B
C++
Raw Normal View History

2023-08-14 11:02:39 +03:00
#include <set>
#include "hack/logger/logger.hpp"
#include "hack/macros/macros.hpp"
auto main(int argc, char *argv[]) -> int
{
std::string s { MAKE_STR(test) };
hack::log()(s);
}