Lua学习笔记

1. Lua 将值 false 和 nil 视为 假, 除此之外都为 真 2. Lua 的字符串是不可变的值 a = "abc string" b = string.gsub(a, "abc", "efg") b -> efg string

你可能感兴趣的:(Lua学习笔记)