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
+6
View File
@@ -0,0 +1,6 @@
#include <cstdio>
#include "hello.h"
__host__ void hello(){
printf("Hello World!\n");
}
+6
View File
@@ -0,0 +1,6 @@
#ifndef HELLO_H
#define HELLO_H
void hello();
#endif
+6
View File
@@ -0,0 +1,6 @@
#include "hello.h"
int main() {
hello();
return 0;
}