table 

Send to Kindle
home » snippets » lua » table



Snippets

-- Sample definition.
tbl = {
  top_left = {
    x = 1,
    y = 2, -- trailing comma is allowed
  },
  bot_right = {
    x = 10,
    y = 20, -- trailing comma is allowed
  }, -- trailing comma is allowed
}