mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-25 06:12:47 -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;
|
|
}
|