在 lua 中声明列表

Sib*_*ibi 2 lua

如何在 lua 中声明一个列表,如以下 python 代码,以及如何索引该列表?

在python中列出:

image_list=[];
Run Code Online (Sandbox Code Playgroud)

小智 6

在 Lua 中有桌子

image_list = {}
Run Code Online (Sandbox Code Playgroud)