mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
9 lines
176 B
C++
9 lines
176 B
C++
#include <Core/Core.h>
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
VectorMap<int, Vector<String> > w;
|
|
w.GetAdd(1).Add("Ahoj");
|
|
String x = StoreAsString(w);
|
|
LOGHEXDUMP(x, x.GetCount());
|
|
}
|