General
- All numbers are double
- No
++
/ +=
- string is immutable by default
~=
: not equal, ok for string
- var global by default (Use
local
)
- String concatenation uses the
..
operator:
- Only nil and false are falsy; 0 and ” are true!
Condition
Function
Tables
Similar to php arrays or js objects, they are hash-lookup dicts that can also be used as lists.
Module