模块就相当于C#中的命名空间创建模块: module = {}; module.var = "longlong"; module.func1 = function() print("这个是模块里面的函数"); end return module使用模块: require "module";--引用模块 module.func1();