Fix LUA-style assignment in Dictionary
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
func test():
|
||||
var dict = {}
|
||||
dict.test = 1
|
||||
print(dict.test)
|
||||
Reference in New Issue
Block a user
@@ -0,0 +1,4 @@
|
||||
func test():
|
||||
var dict = {}
|
||||
dict.test = 1
|
||||
print(dict.test)
|
||||