Fix LUA-style assignment in Dictionary

This commit is contained in:
kobewi
2021-10-05 02:48:33 +02:00
parent 2e8cba0bd9
commit 9e5fdbc79d
3 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
func test():
var dict = {}
dict.test = 1
print(dict.test)