Field access now works, somehow! It was easier then I thought,

probably introduced a bunch of bugs though
This commit is contained in:
Krzosa Karol
2022-09-30 19:58:47 +02:00
parent 32fbacff6d
commit 6cd0596fd5
4 changed files with 84 additions and 84 deletions

View File

@@ -0,0 +1,9 @@
main :: (): int
a := 10
b := 20
values := []Any{a, b}
c := values[0].data
return 0