- [x] Números
- [x] Operadores Aritméticos
- [ ] Precedência
- [ ] Biblioteca Matemática
- [ ] Coerção e Conversão
- [ ] Strings
- [ ] Concatenação
- [ ] Sequência de Escape
- [ ] Strings Longas
- [ ] Biblioteca String
- [ ] UTF-8
- [ ] Booleanos
- [ ] Arrays
- [ ] Null
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