add new examples
This commit is contained in:
14
bin/logger/main.cpp
Normal file
14
bin/logger/main.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user