Added more tests

This commit is contained in:
Eduard Urbach 2024-07-30 15:46:47 +02:00
parent fe9585e03f
commit ff86dfe590
Signed by: eduard
GPG key ID: 49226B848C78F6C8
4 changed files with 22 additions and 7 deletions

View file

@ -1,6 +1,6 @@
main() {
x := 1
y := x + 1
x = 2
assert y == 2
a := 1
b := a + 1
a = 2
assert b == 2
}