Tables are collections of values that you can access by index.
table names is ["Bernardo", "Ana", "Luca"]
This creates a table called names
with three strings inside.
board:(names(1)) /c prints "Bernardo" e\
board:(names(2)) /c prints "Ana" e\
Use parentheses to get the value at a specific position (1-based).
names(3) is "Maria"
board:(names(3)) /c now prints "Maria" e\
You can assign a new value to a table index.