mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
12 lines
168 B
C++
12 lines
168 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
LOG("Hello!");
|
|
Buffer<int> x(200);
|
|
Exit(0);
|
|
LOG("Control should never reach here...");
|
|
NEVER();
|
|
}
|