fix version

This commit is contained in:
chatlanin
2023-04-24 22:13:17 +03:00
parent bebc25fb8e
commit ce8d0176cb
4 changed files with 4 additions and 5 deletions

View File

@@ -31,12 +31,12 @@ int f(int a)
int plus(int a)
{
return a++;
return ++a;
}
int minus(int a)
{
return a--;
return --a;
}
struct ForTypeTrace