15 lines
203 B
C++
15 lines
203 B
C++
|
#include <set>
|
||
|
|
||
|
#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);
|
||
|
}
|
||
|
|
||
|
|