mirror of
https://github.com/andreinechaev/nvcc4jupyter.git
synced 2026-06-13 18:50:47 +05:30
11 lines
117 B
Plaintext
11 lines
117 B
Plaintext
#include <cstdio>
|
|
|
|
__host__ void hello(){
|
|
printf("Hello World!\n");
|
|
}
|
|
|
|
int main() {
|
|
hello();
|
|
return 0;
|
|
}
|