summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/features/dictionary_mixed_syntax.gd
blob: cce8538dddc50b341f335001fa23967df73521b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
func test():
	# Mixing Python-style and Lua-style syntax in the same dictionary declaration
	# is allowed.
	var dict = {
		"hello": {
			world = {
				"is": "beautiful",
			},
		},
	}

	print(dict)