Hey everyone o/
I have a doubt about print()
a table and read the output.
I noticed along a couple of years that sometimes (after Roblox Studio Updates) sometimes when I print()
an array, the output console automatically reads each element inside the table and show it on output, and sometimes it doesnt (depending on the Studio update)
Like this:
local Array = {A = 1, B = 2, C = 3}
print(Array)
--[[ And the output is
A = 1
B = 2
C = 3
]]
And sometimes the output is like this:
table: 0x1271c0dd61492f70
Is there a Studio feature to enable to always print a table and showing its content in output? Why sometimes its enabled and after an update its not, then after another update it is enabled… its confusing.
I know I can iterate (for loop) and print the content of the table, but, I would wish to know if theres a feature to enable it in order to always show the content on output log by print(Array)
Its related with “Expressive Output Window” ? I cant find that feature to activate it, what am I doing wrong?