hack/sandbox/bin/logger/main.cpp

18 lines
295 B
C++
Raw Normal View History

2023-08-14 11:02:39 +03:00
#include <set>
2023-08-20 10:07:06 +03:00
#include <unordered_set>
2023-08-14 11:02:39 +03:00
#include "hack/logger/logger.hpp"
auto main(int argc, char *argv[]) -> int
{
std::set<int> s { 1, 2, 3 };
hack::log()(s);
std::vector<int> v { 1, 2, 3 };
hack::log()(v, s);
2023-08-20 10:07:06 +03:00
std::unordered_set<int> us { 1, 2, 3 };
2023-08-14 11:02:39 +03:00
2023-08-20 10:07:06 +03:00
hack::log()(v, s, us);
}