mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
12 lines
173 B
C++
12 lines
173 B
C++
#include <Core/Core.h>
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
Vector<String> test;
|
|
test.Add("1");
|
|
test.Add("2");
|
|
test.Add("3");
|
|
test.Add("5");
|
|
test.Add("4");
|
|
DUMPC(test);
|
|
}
|