mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
17 lines
284 B
C++
17 lines
284 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
StdLogSetup(LOG_COUT|LOG_FILE);
|
|
|
|
NanoStrings ns;
|
|
Vector<dword> ws;
|
|
|
|
for(int i = 0; i < 10; i++)
|
|
ws.Add(ns.Add(AsString(i * i)));
|
|
|
|
for(int i = 0; i < ws.GetCount(); i++)
|
|
LOG(ns.Get(ws[i]));
|
|
}
|