Tables in Lua

  • Tables are associative arrays
    • Basically Hash Tables
    • Name value pairs
      • What is a hash
      • Why is a hash fast
  • Tables are the only actual data structure in Lua
  • All other structures are made using them