#include using namespace Upp; Vector Test() { Vector x; x << 1 << 2 << 3; return pick(x); } CONSOLE_APP_MAIN { Vector test; test.Add("1"); test.Add("2"); test.Add("3"); test.Add("5"); test.Add("4"); DUMPC(test); Vector b = pick(test); for(auto x: b) DLOG(x); DDUMP(__cplusplus); #ifdef CPP_11 LOG("C++ 11 active"); #endif }