Crafter.Build/tests/Cuda/inner/main.cpp

8 lines
125 B
C++
Raw Normal View History

2026-04-29 03:52:08 +02:00
import std;
extern "C" int kernel_compute();
int main() {
std::println("answer={}", kernel_compute());
return 0;
}