Initial commit

This commit is contained in:
DavidOnTop 2024-01-28 16:35:30 +01:00
commit fb17f39bb1
No known key found for this signature in database
GPG key ID: FAB914DDC2F180EB
15 changed files with 932 additions and 0 deletions

0
src/lib.cpp Normal file
View file

0
src/lib.hpp Normal file
View file

5
src/main.cpp Normal file
View file

@ -0,0 +1,5 @@
#include <cstdio>
int main(int argc, char** argv) {
printf("Hello world!\n");
return 0;
}