Dialogue avec les développeurs
“ To represent records, Lua uses the field name as an index. The language supports this representation by providing a.name as syntactic sugar for a ["name"] . There are several convenient ways to create tables in Lua (see §3.4.8) .We use the term sequence to denote a table where the set of all positive numeric keys is equal to {1..n} for some integer n, which is called the length of the sequence (see §3.4.6) .Like indices, the values of table fields can be of any type. In particular, because functions are first-class values, table fields can contain functions. ”
