Blame c++/contourgl/cuda/hello.cu

383633
extern "C" {
383633
383633
__constant__ char s[] = "Hello!";
383633
383633
383633
__global__ void hello(char *out) {
383633
	int i = threadIdx.x;
383633
	out[i] = s[i];
383633
}
383633
383633
}