Tables
This page will explain to you how to make tables using Zico.
Like Lua, Luau etc..., Zico can make tables very easily

Explanation
'table' is the prefix to create a table in Zico, 'example' is the name of your table, a table must start and end with brackets, exampleValue and exampleNumber are values inside of the table.
The print function will output: "1", to access a table's value you write the table's name + [] and the name of the value of your table.
Last updated