allow building with zig cc/c++

This commit is contained in:
2025-05-29 23:10:28 +03:00
parent 4ad8861572
commit 61481a1fac
8 changed files with 44 additions and 22 deletions

View File

@@ -5,7 +5,7 @@ namespace minimal_lib {
int getNewValue(int x) {
static int value = 0;
value = value + x;
value = 42;
return value;
}