2025-01-19 22:39:12 +03:00

9 lines
94 B
C++

int add(int a, int b)
{
return a + b;
}
extern "C" int _start()
{
return add(1, 2);
}