mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
9 lines
147 B
C++
9 lines
147 B
C++
#include "Threads.h"
|
|
|
|
String ToString(const Complex & c) { return Format("%g+%g i",c.Re(), c.Im());}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
Threads().Run();
|
|
}
|
|
|