virtualx-engine/modules/gdscript/tests/scripts/parser/features/nested_array.gd

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
172 B
GDScript3
Raw Normal View History

func test():
var array = [[[[[[[[[[15]]]]]]]]]]
print(array[0][0][0][0][0][0][0][0])
print(array[0][0][0][0][0][0][0][0][0])
print(array[0][0][0][0][0][0][0][0][0][0])