类型与值
1、8种基础类型
nil、boolean、number、string、table
userdata(自定义类型)、function、thread
2、type() -- 返回其类型名称
a = 'shuishui'
type(a) --string
a = 7
type(a) -- number
type(type) -- function
type(type(x)) -- string(无论 x 的内容是什么,总返回string)
a = print -- 这是合法的!
a(type(a)) -- function