mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
9 lines
134 B
C++
9 lines
134 B
C++
#include <Core/Core.h>
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
Parallel m;
|
|
for(int i = 0; i < 100; i++)
|
|
m * callback1(Test, i);
|
|
m.Wait();
|
|
}
|