lua编码规范.txt * 尽量避免magic number * 尽量使用 local 变量而非 global 变量 * 被多次读取的 global 变量,应提取出来放到 local 变量中 * 避免对内部函数的赋值, eg: a= print......