Add tests

This commit is contained in:
Cosmin Ciocan
2024-01-02 10:48:49 +01:00
parent 0577af2aae
commit 743a46316c
8 changed files with 314 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <cstdio>
__host__ void hello(){
printf("Hello World!\n");
}
int main() {
hello();
return 0;
}