Basic variable reassignments

This commit is contained in:
Krzosa Karol
2022-06-01 12:13:02 +02:00
parent 86aec0b1eb
commit 9b18c106b6
6 changed files with 116 additions and 55 deletions

View File

@@ -43,6 +43,15 @@ pointer := &with_type
deref := *pointer
test_stmts :: ()
i := 0
i += 4
i -= 1
i *= 2
i /= 2
i %= 2
/*
for
pass