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