Guest User

Untitled

a guest
Oct 18th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.17 KB | None | 0 0
  1. local table = {}
  2.  
  3. -- Insert things into a table row
  4.  
  5. table[#table+1] = { "some", "data" }
  6.  
  7. -- Get something from the table
  8.  
  9. print ( table[row][1] ) -- Returns "some"
Add Comment
Please, Sign In to add comment