mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-31 07:12:39 -06:00
10 lines
134 B
C++
10 lines
134 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
ArrayMap<int, int> x, y;
|
|
BREAK_WHEN_PICKED(x);
|
|
x = y;
|
|
}
|