Files
nvcc/tests/fixtures/single_file/hello.cu
T
Cosmin Ciocan 743a46316c Add tests
2024-01-02 10:48:49 +01:00

10 lines
116 B
Plaintext

#include <cstdio>
__host__ void hello(){
printf("Hello World!\n");
}
int main() {
hello();
return 0;
}