Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gdscript/tests/scripts/parser/features/dictionary_mixed_syntax.gd
10285 views
func test():
	# Mixing Python-style and Lua-style syntax in the same dictionary declaration
	# is allowed.
	var dict = {
		"hello": {
			world = {
				"is": "beautiful",
			},
		},
	}

	print(dict)