5 lines
61 B
GDScript
5 lines
61 B
GDScript
|
func test():
|
||
|
var dict = {}
|
||
|
dict.test = 1
|
||
|
print(dict.test)
|