STR:
- Run the following command:
for i, v in pairs(table.pack("1", "2", "3")) do print(i, v) end
- Observe the output.
Expectations:
The output should read
1 1
2 2
3 3
Reality:
The output reads
1 1
2 2
3 3
n 3
table.pack produces a malformed table, it is neither a dictionary nor array. Gross
Edit: Looks like this is intended looking at the documentation