Posted 15 May 2016 - 07:43 PM
more nitpicking than anything so I doubt this will be considered but suggesting it none the less. The Lua program current serializes table output to make it easy to read. This is a really nice feature however due to the limited size constraints the tables quickly because unreadable by being pushed off the screen. I am suggesting instead it be changed to something like
print( textutils.serialize(output):gsub("\n","") )
now obviously that's not the cleanest solution and leaves a ton of needless spaces behind but its the easiest example of what I am suggesting. Essentially I believe the Lua program should try to condense the serialized tables as much as possible before printing so they are easier to readEdited on 15 May 2016 - 05:43 PM