2024-09-07 22:57:03 +06:00

9 lines
94 B
C++

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