pico8 lua: unexpeted change of size of an array – Ubuntu
I am seeing some unexpected behaviour when using a table as an array in pico8 lua when compared to regular PUC-Rio lua If I run the following code using PUC-Rio lua5.4.4 (ubuntu) local t={} for i=1,10 do t[i] = i*10…