mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
15 lines
215 B
C++
15 lines
215 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
String text;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
Thread t;
|
|
t.Run([] {
|
|
text = "This is just a test of thread shutdown";
|
|
});
|
|
t.Wait();
|
|
DDUMP(text);
|
|
}
|