initial commit

This commit is contained in:
Sem van der Hoeven
2023-03-03 10:15:52 +00:00
commit 5ce3d43841
29 changed files with 675 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include <cstdio>
int main(int argc, char ** argv)
{
(void) argc;
(void) argv;
printf("hello world my_package package\n");
return 0;
}