Print(table) contents instead of memory address (SOLVED)

DEFOLD ENGINE AND EDITOR FEATURE REQUESTS

Describe the solution you’d like (REQUIRED):
When printing a table, it doesn’t print the content of it, rather a memory address (I assume).

Could we instead have Output print the table content? This would help my game come to life faster instead of creating outputting loops.

Describe alternatives you’ve considered (REQUIRED):
An alternative would be developers creating their own output loops, which is time costly and unattractive. Having a standardized option would be nice.

Additional context (OPTIONAL):
Tables are important. An example: game logic. We as users need readable tables, or else we get frustrated with reading machine addresses.

Try:

pprint(your_table)
3 Likes

Thank you!

1 Like