mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
14 lines
183 B
C++
14 lines
183 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
LOG("Test");
|
|
LOGBEGIN();
|
|
LOG("Test 1");
|
|
LOG("Test A");
|
|
LOGEND();
|
|
LOG("Test 2");
|
|
LOG("Test B");
|
|
}
|