git-svn-id: svn://db.shs.com.ru/pip@822 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2019-06-27 13:52:11 +00:00
parent f614a956a7
commit 39ea30a836

View File

@@ -1,5 +1,9 @@
#include "pip.h"
int main(int argc, char * argv[]) {
PIMap<int, PIVector<int> > x;
x[3] << 5;
piCout << x;
x.remove(3);
return 0;
}
}