Richie Bendall c8fc6cd6d3
Meta tweaks
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2021-03-15 16:18:40 +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;
}