I have seen Lua data structure files with a function call followed by a table, as in:
ordered() { a=1, b=2 }
Or nested:
ordered() { a=1, b=2, ordered() {c=3} }
Is this a function call with a single table argument to a function named ordered?
I am trying to understand how ‘ordered’ function is defined.