Ozzypig / repr

Convert any Lua object into a printable string, like Python's repr
Do What The F*ck You Want To Public License
16 stars 7 forks source link

bug? #4

Open velkyel opened 3 years ago

velkyel commented 3 years ago
require('repr')

a = {}
a[3] = 1
print(repr(a))    --- {}

why repr() returns empty table?