add rudimentary data copy. Breaks often.

This commit is contained in:
2025-04-26 23:23:58 +03:00
parent cf398c55ff
commit b0d3c57615
8 changed files with 139 additions and 55 deletions

View File

@@ -3,8 +3,8 @@
namespace minimal_lib {
int getNewValue(int x) {
static int value = 1;
value = value + x;
static int value = 0;
value = value + 1;
return value;
}