MudletM
Mudletâ€ĸ4y ago
demonnic

if you want to do the whole list, you could use ipairs ```lua for index, pet in ipairs(pets) do ec

if you want to do the whole list, you could use ipairs
for index, pet in ipairs(pets) do
  echo(f"Pet {index} is {pet}\n")
end
Was this page helpful?