/ hello-world / c / Cuda.cu
Cuda.cu
 1  #include <stdio.h>
 2  
 3  __global__ void hello_world(){
 4      printf("Hello World\n");
 5  }
 6  
 7  int main() {
 8      hello_world<<<1,1>>>();
 9      return 0;
10  }