Preview:
local miTabla = { "manzana", "banana", "cereza" }

for i = 1, #miTabla do
	print(miTabla[i])
end

-- Tablas(ipairs)
for indice, valor in ipairs(miTabla) do
	print(indice)
	print(valor)
end
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter