mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
12 lines
175 B
C++
12 lines
175 B
C++
#include "Core/Core.h"
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
StringStream ss;
|
|
ss.Put("Ahoj");
|
|
ss.Reserve(500);
|
|
ss.Put("xxx", 3);
|
|
DDUMP(ss.GetResult());
|
|
}
|