Lua possui oito tipos de dados: nil, boolean, number, string, userdata, function, thread, e table .

type(nil) -- nil
type(true) -- boolean
type(1 + 1) -- number
type("Ola") -- string
type(io.stdin) -- userdata
type(print) -- function
type({}) -- table

Números

Strings

Booleanos

https://youtu.be/Q1UzVtNcvJw