13 lines
186 B
C++
13 lines
186 B
C++
#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);
|
|
}
|
|
|
|
|