8 lines
125 B
C++
8 lines
125 B
C++
|
|
import std;
|
||
|
|
|
||
|
|
extern "C" int kernel_compute();
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
std::println("answer={}", kernel_compute());
|
||
|
|
return 0;
|
||
|
|
}
|