summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/features/dictionary_lua_style.gd
blob: fdd6de23482b03fbb8c46a1bb7e4189e604d2f95 (plain)
1
2
3
4
5
6
7
8
9
func test():
	var lua_dict = {
		a = 1,
		"b" = 2, # Using strings are allowed too.
		"with spaces" = 3, # Especially useful when key has spaces...
		"2" = 4, # ... or invalid identifiers.
	}

	print(lua_dict)