summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/features/nested_dictionary.gd
blob: d67e14215699b0015d788e38da1ab5e092b33727 (plain)
1
2
3
4
5
6
func test():
	var dictionary = {1: {2: {3: {4: {5: {6: {7: {8: {"key": "value"}}}}}}}}}
	print(dictionary[1][2][3][4][5][6][7])
	print(dictionary[1][2][3][4][5][6][7][8])
	print(dictionary[1][2][3][4][5][6][7][8].key)
	print(dictionary[1][2][3][4][5][6][7][8]["key"])