Got things running for Linux

This commit is contained in:
2026-07-22 22:28:05 +03:00
parent 5e7ed489af
commit 767eeb6b39
12 changed files with 78 additions and 13 deletions

View File

@@ -1,3 +1,5 @@
#ifdef _WIN32
#include <assert.h>
#include <stdbool.h>
#include <stdio.h>
@@ -107,3 +109,16 @@ int main() {
return 0;
}
#endif // _WIN32
#ifdef __linux__
#include <stdio.h>
int main() {
printf("Hello linux\n");
return 0;
}
#endif // __linux__