Richie Bendall e46f917916 Added Cuda
Fixes: #537
Co-Authored-By: BlahGeek <i@blahgeek.com>
2020-04-01 04:51:16 +13:00

11 lines
140 B
Plaintext

#include <stdio.h>
__global__ void hello_world(){
printf("Hello World\n");
}
int main() {
hello_world<<<1,1>>>();
return 0;
}