This commit is contained in:
2025-05-28 14:19:58 +03:00
parent fdd30a8854
commit c001ccb12a
9 changed files with 565 additions and 21 deletions

View File

@@ -0,0 +1,13 @@
BEGIN
y := x++;
write(y);
write(x);
y := 10 - --x;
write(y);
write(x);
y := 10 -++x;
write(y);
write(x)
END