lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> - I don't really understand what Peter Hill means by "a Lua data format".
Lua code itself is a powerful data format:
data={
	item={name="blah",value=123,},
}

instead of:
<DATA>
  <ITEM>
    <NAME>blah</NAME>
    <VALUE>123</VALUE>
  </ITEM>
</DATA>

Cheers,
Peter