Comment obtenir la longueur d'une table à Lua

myTable = {1, 2, 3}

for i = 1, #myTable do
	-- Code
end
KoalaJohnson